| [a4d3566] | 1 | # This is a SARL configuration file. It specifies the full path
|
|---|
| 2 | # to each automated theorem prover that may be used by SARL.
|
|---|
| 3 | # It is needed for executing the SARL test suite.
|
|---|
| 4 | # Other applications that use SARL as a library do not have
|
|---|
| 5 | # to use a SARL configuration file. They can just specify
|
|---|
| 6 | # the paths using the SARL API.
|
|---|
| 7 | #
|
|---|
| 8 | # The format: one line for each tool.
|
|---|
| 9 | # The line has the form:
|
|---|
| 10 | #
|
|---|
| 11 | # alias-list : kind : path : version
|
|---|
| 12 | #
|
|---|
| 13 | # The alias-list is a comma-separated list of strings.
|
|---|
| 14 | # All of the aliases in the list refer to the same prover.
|
|---|
| 15 | # The kind refers to the kind of input language accepted
|
|---|
| 16 | # by the tool. It is one of the following: CVC3, CVC4.
|
|---|
| 17 | # (More coming soon.)
|
|---|
| 18 | # The path is the full path to the executable tool. The
|
|---|
| 19 | # version is the version string of that tool. It is possible
|
|---|
| 20 | # to have multiple instances of a single tool by using different
|
|---|
| 21 | # aliases for each.
|
|---|
| 22 | # White space is ignored (except for the newlines), and
|
|---|
| 23 | # any line starting with '#' is ignored.
|
|---|
| 24 | # Example:
|
|---|
| 25 | #
|
|---|
| 26 | # cvc3,cvc3a : CVC3 : /opt/vsl/bin/cvc3 : 3.192
|
|---|
| 27 | # cvc3b : CVC3: /usr/local/bin/cvc3 : 2.78
|
|---|
| 28 | # cvc4,cvc4a : CVC4 : /usr/local/bin/cvc4 : 1.3
|
|---|
| 29 | #
|
|---|
| 30 | # SARL will look first in the current working directory
|
|---|
| 31 | # for a file named .sarl. If it doesn't find that,
|
|---|
| 32 | # it will look in the same directory for .sarl_default.
|
|---|
| 33 | # If it doesn't find that, it will look in the user's
|
|---|
| 34 | # home directory for .sarl, then in the user's home
|
|---|
| 35 | # directory for sarl_default.
|
|---|
| 36 |
|
|---|
| 37 | cvc4x : CVC4 : /opt/local/bin/cvc4 : 1.4
|
|---|
| 38 | #cvc4a : CVC4_API : : 1.4
|
|---|
| 39 | cvc3 : CVC3_API : : UNKNOWN
|
|---|