mirror of
https://github.com/Z3Prover/z3
synced 2025-04-11 03:33:35 +00:00
fixing interface and test'
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
c7eda4e687
commit
d094f6a856
|
@ -398,7 +398,7 @@ export interface Solver<Name extends string = 'main'> {
|
|||
add(...exprs: (Bool<Name> | AstVector<Name, Bool<Name>>)[]): void;
|
||||
addAndTrack(expr: Bool<Name>, constant: Bool<Name> | string): void;
|
||||
assertions(): AstVector<Name, Bool<Name>>;
|
||||
from_string(s : string): void;
|
||||
fromString(s : string): void;
|
||||
check(...exprs: (Bool<Name> | AstVector<Name, Bool<Name>>)[]): Promise<CheckSatResult>;
|
||||
model(): Model<Name>;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue