chore: fill in cost model

test: Add case and constr eval tests
This commit is contained in:
microproofs
2023-09-01 22:31:40 -04:00
committed by Kasey
parent 85901dc141
commit c9b01ab365
2 changed files with 71 additions and 8 deletions

View File

@@ -147,12 +147,12 @@ impl MachineCosts {
},
// Placeholder values
constr: ExBudget {
mem: 30000000000,
cpu: 30000000000,
mem: 100,
cpu: 23000,
},
case: ExBudget {
mem: 30000000000,
cpu: 30000000000,
mem: 100,
cpu: 23000,
},
}
}
@@ -193,12 +193,12 @@ impl Default for MachineCosts {
},
// Placeholder values
constr: ExBudget {
mem: 30000000000,
cpu: 30000000000,
mem: 100,
cpu: 23000,
},
case: ExBudget {
mem: 30000000000,
cpu: 30000000000,
mem: 100,
cpu: 23000,
},
}
}