https://gitlab.ow2.org/sat4j/sat4j.git
Revision 0132cc333e4207cd3c3fdb906f539b04daf4b527 authored by Daniel Le Berre on 22 February 2019, 08:46:09 UTC, committed by Daniel Le Berre on 22 February 2019, 08:46:09 UTC
1 parent 45015ab
Raw File
Tip revision: 0132cc333e4207cd3c3fdb906f539b04daf4b527 authored by Daniel Le Berre on 22 February 2019, 08:46:09 UTC
Adding test cases for #155.
Tip revision: 0132cc3
README.md
# HOW TO DOWNLOAD SAT4J JAR FILES

- Releases are available from [OW2 download repository](http://download.forge.ow2.org/sat4j/) 
- Nighlty builds are available [from gitlab continuous integration](https://gitlab.ow2.org/sat4j/sat4j/pipelines)

# HOW TO BUILD SAT4J FROM SOURCE

## Using Maven (library users)

Just launch 

```shell
$ mvn -DskipTests=true install
```

to build the SAT4J modules from the source tree.

All the dependencies will be gathered by Maven.


## Using ant (solvers users)

Just type:

```shell
$ ant [core,pseudo,maxsat,sat]
```

to build the solvers from source.

The solvers will be available in the directory `dist/CUSTOM`.

You may want to use a custom release name.

```shell
$ ant -Drelease=MINE maxsat
```

In that case, the solvers will be available in the directory `dist/MINE`.

Type

```shell
$ ant -p
```

to see available options.
back to top