-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tcr: Add configuration properties, improve output
- Loading branch information
1 parent
703e399
commit 508032d
Showing
21 changed files
with
241 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Logging | ||
# See http://www.slf4j.org/api/org/slf4j/impl/SimpleLogger.html | ||
org.slf4j.simpleLogger.defaultLogLevel=info | ||
org.slf4j.simpleLogger.showLogName=false | ||
org.slf4j.simpleLogger.dateTimeFormat="" | ||
org.slf4j.simpleLogger.showThreadName=false | ||
org.slf4j.simplelogger.levelInBrackets=true | ||
|
||
org.slf4j.simpleLogger.log.io.micronaut=info | ||
|
||
# Z3 | ||
# Configuration properties for Z3 must be prefixed with `com.microsoft.z3`. | ||
# A list can be obtained by running `z3 -p` in a shell. The complete list | ||
# of parameters is very long. The most important ones are global parameters: | ||
# auto_config (bool) (default: true) | ||
# debug_ref_count (bool) (default: false) | ||
# dot_proof_file (string) (default: proof.dot) | ||
# dump_models (bool) (default: false) | ||
# memory_high_watermark (unsigned int) (default: 0) | ||
# memory_max_alloc_count (unsigned int) (default: 0) | ||
# memory_max_size (unsigned int) (default: 0) [bytes] | ||
# model (bool) (default: true) | ||
# model_validate (bool) (default: false) | ||
# proof (bool) (default: false) | ||
# rlimit (unsigned int) (default: 0) | ||
# smtlib2_compliant (bool) (default: false) | ||
# stats (bool) (default: false) | ||
# timeout (unsigned int) (default: 4294967295) [milliseconds] | ||
# trace (bool) (default: false) | ||
# trace_file_name (string) (default: z3.log) | ||
# type_check (bool) (default: true) | ||
# unsat_core (bool) (default: false) | ||
# verbose (unsigned int) (default: 0) | ||
# warning (bool) (default: true) | ||
# well_sorted_check (bool) (default: false) | ||
com.microsoft.z3.timeout=900000 | ||
com.microsoft.z3.memory_max_size=25769803776 | ||
com.microsoft.z3.unsat_core=true | ||
com.microsoft.z3.trace=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.