how to start SCIP in Windows 7 when I want to use GCG
I want to use GCG's branch-and-price frame to solve a MIP which is similar to Binpacking problem. So I download the SCIPOptSuite-6.0.0-win64-VS15.exe and install it in Windows 7 and then install the Visual C++ Redistributable Packages which is required. Also I install the Cmake in Windows 7. But I do know how to do next after failed trying the instructions in the website https://scip.zib.de/doc-6.0.0/html/CMAKE.php (Installation information using CMake (recommended for new users)). I do not know where to start to compile. I even do not know whether the installation succeeds or not.
scip
add a comment |
I want to use GCG's branch-and-price frame to solve a MIP which is similar to Binpacking problem. So I download the SCIPOptSuite-6.0.0-win64-VS15.exe and install it in Windows 7 and then install the Visual C++ Redistributable Packages which is required. Also I install the Cmake in Windows 7. But I do know how to do next after failed trying the instructions in the website https://scip.zib.de/doc-6.0.0/html/CMAKE.php (Installation information using CMake (recommended for new users)). I do not know where to start to compile. I even do not know whether the installation succeeds or not.
scip
add a comment |
I want to use GCG's branch-and-price frame to solve a MIP which is similar to Binpacking problem. So I download the SCIPOptSuite-6.0.0-win64-VS15.exe and install it in Windows 7 and then install the Visual C++ Redistributable Packages which is required. Also I install the Cmake in Windows 7. But I do know how to do next after failed trying the instructions in the website https://scip.zib.de/doc-6.0.0/html/CMAKE.php (Installation information using CMake (recommended for new users)). I do not know where to start to compile. I even do not know whether the installation succeeds or not.
scip
I want to use GCG's branch-and-price frame to solve a MIP which is similar to Binpacking problem. So I download the SCIPOptSuite-6.0.0-win64-VS15.exe and install it in Windows 7 and then install the Visual C++ Redistributable Packages which is required. Also I install the Cmake in Windows 7. But I do know how to do next after failed trying the instructions in the website https://scip.zib.de/doc-6.0.0/html/CMAKE.php (Installation information using CMake (recommended for new users)). I do not know where to start to compile. I even do not know whether the installation succeeds or not.
scip
scip
asked Nov 21 '18 at 9:29
QidongQidong
11
11
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
If you want to compile the code, you need to download the source package not the precompiled ones, as they don't include the source files.
As far as I know, GCG is not available in the precompiled packages, unfortunately.
Now I could run examples of "the tutorial on how to use the interactive shell" part(scip.zib.de/doc-5.0.1/html/SHELL.php) through copying the 'scip' of source files into the installing file of SCIPOptSuite-6.0.0-win64-VS15.exe. I find the 'example' file in source files. What should I do next if I want to compile based on 'Binpacking' example using GCG method? Which platform should I choose to compile, Cmake or Visual studio? Is there any interactive operation between the compiler software and the SCIPOptsuite?
– Qidong
Nov 22 '18 at 2:51
You need to make yourself familiar with compiling C/C++ code. It's often not so simple. CMake and Visual Studio are no platforms - Windows and Linux are platforms. CMake can generate configurations to tell a compiler - like VS - how to compile the source files.
– mattmilten
Nov 22 '18 at 7:28
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53408914%2fhow-to-start-scip-in-windows-7-when-i-want-to-use-gcg%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you want to compile the code, you need to download the source package not the precompiled ones, as they don't include the source files.
As far as I know, GCG is not available in the precompiled packages, unfortunately.
Now I could run examples of "the tutorial on how to use the interactive shell" part(scip.zib.de/doc-5.0.1/html/SHELL.php) through copying the 'scip' of source files into the installing file of SCIPOptSuite-6.0.0-win64-VS15.exe. I find the 'example' file in source files. What should I do next if I want to compile based on 'Binpacking' example using GCG method? Which platform should I choose to compile, Cmake or Visual studio? Is there any interactive operation between the compiler software and the SCIPOptsuite?
– Qidong
Nov 22 '18 at 2:51
You need to make yourself familiar with compiling C/C++ code. It's often not so simple. CMake and Visual Studio are no platforms - Windows and Linux are platforms. CMake can generate configurations to tell a compiler - like VS - how to compile the source files.
– mattmilten
Nov 22 '18 at 7:28
add a comment |
If you want to compile the code, you need to download the source package not the precompiled ones, as they don't include the source files.
As far as I know, GCG is not available in the precompiled packages, unfortunately.
Now I could run examples of "the tutorial on how to use the interactive shell" part(scip.zib.de/doc-5.0.1/html/SHELL.php) through copying the 'scip' of source files into the installing file of SCIPOptSuite-6.0.0-win64-VS15.exe. I find the 'example' file in source files. What should I do next if I want to compile based on 'Binpacking' example using GCG method? Which platform should I choose to compile, Cmake or Visual studio? Is there any interactive operation between the compiler software and the SCIPOptsuite?
– Qidong
Nov 22 '18 at 2:51
You need to make yourself familiar with compiling C/C++ code. It's often not so simple. CMake and Visual Studio are no platforms - Windows and Linux are platforms. CMake can generate configurations to tell a compiler - like VS - how to compile the source files.
– mattmilten
Nov 22 '18 at 7:28
add a comment |
If you want to compile the code, you need to download the source package not the precompiled ones, as they don't include the source files.
As far as I know, GCG is not available in the precompiled packages, unfortunately.
If you want to compile the code, you need to download the source package not the precompiled ones, as they don't include the source files.
As far as I know, GCG is not available in the precompiled packages, unfortunately.
answered Nov 21 '18 at 10:41
mattmiltenmattmilten
2,23311842
2,23311842
Now I could run examples of "the tutorial on how to use the interactive shell" part(scip.zib.de/doc-5.0.1/html/SHELL.php) through copying the 'scip' of source files into the installing file of SCIPOptSuite-6.0.0-win64-VS15.exe. I find the 'example' file in source files. What should I do next if I want to compile based on 'Binpacking' example using GCG method? Which platform should I choose to compile, Cmake or Visual studio? Is there any interactive operation between the compiler software and the SCIPOptsuite?
– Qidong
Nov 22 '18 at 2:51
You need to make yourself familiar with compiling C/C++ code. It's often not so simple. CMake and Visual Studio are no platforms - Windows and Linux are platforms. CMake can generate configurations to tell a compiler - like VS - how to compile the source files.
– mattmilten
Nov 22 '18 at 7:28
add a comment |
Now I could run examples of "the tutorial on how to use the interactive shell" part(scip.zib.de/doc-5.0.1/html/SHELL.php) through copying the 'scip' of source files into the installing file of SCIPOptSuite-6.0.0-win64-VS15.exe. I find the 'example' file in source files. What should I do next if I want to compile based on 'Binpacking' example using GCG method? Which platform should I choose to compile, Cmake or Visual studio? Is there any interactive operation between the compiler software and the SCIPOptsuite?
– Qidong
Nov 22 '18 at 2:51
You need to make yourself familiar with compiling C/C++ code. It's often not so simple. CMake and Visual Studio are no platforms - Windows and Linux are platforms. CMake can generate configurations to tell a compiler - like VS - how to compile the source files.
– mattmilten
Nov 22 '18 at 7:28
Now I could run examples of "the tutorial on how to use the interactive shell" part(scip.zib.de/doc-5.0.1/html/SHELL.php) through copying the 'scip' of source files into the installing file of SCIPOptSuite-6.0.0-win64-VS15.exe. I find the 'example' file in source files. What should I do next if I want to compile based on 'Binpacking' example using GCG method? Which platform should I choose to compile, Cmake or Visual studio? Is there any interactive operation between the compiler software and the SCIPOptsuite?
– Qidong
Nov 22 '18 at 2:51
Now I could run examples of "the tutorial on how to use the interactive shell" part(scip.zib.de/doc-5.0.1/html/SHELL.php) through copying the 'scip' of source files into the installing file of SCIPOptSuite-6.0.0-win64-VS15.exe. I find the 'example' file in source files. What should I do next if I want to compile based on 'Binpacking' example using GCG method? Which platform should I choose to compile, Cmake or Visual studio? Is there any interactive operation between the compiler software and the SCIPOptsuite?
– Qidong
Nov 22 '18 at 2:51
You need to make yourself familiar with compiling C/C++ code. It's often not so simple. CMake and Visual Studio are no platforms - Windows and Linux are platforms. CMake can generate configurations to tell a compiler - like VS - how to compile the source files.
– mattmilten
Nov 22 '18 at 7:28
You need to make yourself familiar with compiling C/C++ code. It's often not so simple. CMake and Visual Studio are no platforms - Windows and Linux are platforms. CMake can generate configurations to tell a compiler - like VS - how to compile the source files.
– mattmilten
Nov 22 '18 at 7:28
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53408914%2fhow-to-start-scip-in-windows-7-when-i-want-to-use-gcg%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown