3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 09:34:08 +00:00
z3/examples/maxsat
Leonardo de Moura e2f4943b4e moved dll and examples
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2012-10-23 16:33:20 -07:00
..
build-external.cmd moved dll and examples 2012-10-23 16:33:20 -07:00
build.sh moved dll and examples 2012-10-23 16:33:20 -07:00
ex.smt moved dll and examples 2012-10-23 16:33:20 -07:00
exec-external.cmd moved dll and examples 2012-10-23 16:33:20 -07:00
maxsat.c moved dll and examples 2012-10-23 16:33:20 -07:00
maxsat.vcxproj moved dll and examples 2012-10-23 16:33:20 -07:00
README-external.txt moved dll and examples 2012-10-23 16:33:20 -07:00
README.txt moved dll and examples 2012-10-23 16:33:20 -07:00

WARNING: this example still uses the old Z3 (version 3.x) C API. 
The current version is backward compatible. 

1) Using Visual Studio (with Z3 source code release)

The maxsat example application is automatically built when the z3-prover.sln is processed. The following command should be used to compile z3-prover.sln in the Z3 root directory

        msbuild /p:configuration=external

The maxsat executable is located at
    
        ..\external\maxsat

To process ex.smt, use

        ..\external\maxsat ex.smt

2) Using gcc (on Linux or OSX)

Use 'build.sh' to build the MaxSAT application using gcc. 

You must install Z3 before running this example.
To install Z3, execute the following command in the Z3 root directory.

  sudo make install

Use 'build.sh' to build the test application using gcc. 
It generates the executable 'maxsat'.