this repo has no description
1To compile the examples, you must add the qecode folder and the gecode folder (i.e. .. and ../../.. from this examples folder) to your include and library paths. These examples have to been linked against the gecodeint, gecodekernel, gecodeminimodel, gecodesupport, and gecodeqecode libraries. If you built the dynamic version of the gecode/qecode libraries, you will also have to add these folders to the dynamic libraries search path.
2
3Example (with dynamic libs) :
4 For Linux, using gcc :
5 $ g++ stress_test.cpp -I.. -I../../.. -L.. -L../../.. -lgecodeqecode -lgecodeminimodel -lgecodesearch -lgecodeint -lgecodekernel -lgecodesupport -lpthread -o stress_test
6 $ export LD_LIBRARY_PATH="..:../../.." # only if using shared libraries
7 $ ./stress_test
8
9 For MacOS, using gcc :
10 $ g++ stress_test.cpp -I.. -I../../.. -L.. -L../../.. -lgecodeqecode -lgecodeminimodel -lgecodesearch -lgecodeint -lgecodekernel -lgecodesupport -lpthread -o stress_test
11 $ export DYLD_LIBRARY_PATH="..:../../.." # only if using shared libraries
12 $ ./stress_test
13