decuple default limits

This commit is contained in:
mehbark 2023-06-13 22:52:26 -04:00
parent 6e00f260a8
commit 7d6aaddf81

View file

@ -17,8 +17,8 @@ static FORALL: Lazy<Symbol> = Lazy::new(|| TABLE.lock().unwrap().intern("forall"
/// Note that it is actually the string "def". This is for the user's convenience.
static CONCRETE: Lazy<Symbol> = Lazy::new(|| TABLE.lock().unwrap().intern("def").unwrap());
const DEFAULT_COMPLEXITY_LIMIT: usize = 20_000;
const DEFAULT_STEP_LIMIT: usize = 2_000;
const DEFAULT_COMPLEXITY_LIMIT: usize = 200_000;
const DEFAULT_STEP_LIMIT: usize = 20_000;
fn main() {
match do_it() {