1
0
This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
Jip J. Dekker 2572df0663 Squashed 'software/gecode_base/' content from commit bbefcea214
git-subtree-dir: software/gecode_base
git-subtree-split: bbefcea214fec798a0f5acc442581984555acd21
2021-07-11 17:26:05 +10:00

27 lines
852 B
Plaintext

Quacode is a quantified constraint satisfaction
problems (QCSP) solver based on Gecode.
Quacode have been developped by Vincent Barichard.
More info is available on http://quacode.barichard.com
To compile Quacode, you have to install cmake. To setup the
compilation process for your environment, you can launch
cmake by invoking
cmake .
in the toplevel Quacode directory.
By default, 'make install' will install all the files in
'/usr/local/bin', '/usr/local/lib' etc. You can specify
an installation prefix other than '/usr/local' setting the
'CMAKE_INSTALL_PREFIX' option,
for instance 'cmake -DCMAKE_INSTALL_PREFIX:PATH=$HOME .'
Then you can compile the code by invoking
make
in the toplevel Quacode directory.
After a successful compilation, you can install Quacode
library and examples by invoking
make install
in the build directory.