|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.mit.csail.sdg.alloy4.A4Reporter
public class A4Reporter
This class receives diagnostic, progress, and warning messages from Alloy4. (This default implementation ignores all calls; you should subclass it to do the appropriate screen output)
Field Summary | |
---|---|
static A4Reporter |
NOP
This is a pre-constructed instance that simply ignores all calls. |
Constructor Summary | |
---|---|
A4Reporter()
Constructs a default A4Reporter object that does nothing. |
|
A4Reporter(A4Reporter reporter)
Constructs an A4Reporter that forwards each method to the given A4Reporter. |
Method Summary | |
---|---|
void |
bound(java.lang.String msg)
This method is called by the BoundsComputer to report the bounds chosen for each sig and each field. |
void |
debug(java.lang.String msg)
This method is called at various points to report the current progress; it is intended as a debugging aid for the developers; the messages are generally not useful for end users. |
void |
minimized(java.lang.Object command,
int before,
int after)
If solver!=KK and solver!=CNF, this method is called by the translator after performing the unsat core minimization. |
void |
minimizing(java.lang.Object command,
int before)
If solver!=KK and solver!=CNF, this method is called by the translator before starting the unsat core minimization. |
void |
parse(java.lang.String msg)
This method is called by the parser to report parser events. |
void |
resultCNF(java.lang.String filename)
If solver==KK or solver==CNF, this method is called by the translator after it constructed the Kodkod or CNF file. |
void |
resultSAT(java.lang.Object command,
long solvingTime,
java.lang.Object solution)
If solver!=KK and solver!=CNF, this method is called by the translator if the formula is satisfiable. |
void |
resultUNSAT(java.lang.Object command,
long solvingTime,
java.lang.Object solution)
If solver!=KK and solver!=CNF, this method is called by the translator if the formula is unsatisfiable. |
void |
scope(java.lang.String msg)
This method is called by the ScopeComputer to report the scope chosen for each sig. |
void |
solve(int primaryVars,
int totalVars,
int clauses)
This method is called by the translator just after it generated the CNF. |
void |
translate(java.lang.String solver,
int bitwidth,
int maxseq,
int skolemDepth,
int symmetry)
This method is called by the translator just before it begins generating CNF. |
void |
typecheck(java.lang.String msg)
This method is called by the typechecker to report the type for each field/function/predicate/assertion, etc. |
void |
warning(ErrorWarning msg)
This method is called by the typechecker to report a nonfatal type error. |
void |
write(java.lang.Object expr)
This method is called by the A4SolutionWriter when it is writing a particular sig, field, or skolem. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final A4Reporter NOP
Constructor Detail |
---|
public A4Reporter()
public A4Reporter(A4Reporter reporter)
Method Detail |
---|
public void debug(java.lang.String msg)
public void parse(java.lang.String msg)
public void typecheck(java.lang.String msg)
public void warning(ErrorWarning msg)
public void scope(java.lang.String msg)
public void bound(java.lang.String msg)
public void translate(java.lang.String solver, int bitwidth, int maxseq, int skolemDepth, int symmetry)
solver
- - the solver chosen by the user (eg. SAT4J, MiniSat...)bitwidth
- - the integer bitwidth chosen by the usermaxseq
- - the scope on seq/Int chosen by the userskolemDepth
- - the skolem function depth chosen by the user (0, 1, 2...)symmetry
- - the amount of symmetry breaking chosen by the user (0...)public void solve(int primaryVars, int totalVars, int clauses)
primaryVars
- - the total number of primary variablestotalVars
- - the total number of variables including the number of primary variablesclauses
- - the total number of clausespublic void resultCNF(java.lang.String filename)
filename
- - the Kodkod or CNF file generated by the translatorpublic void resultSAT(java.lang.Object command, long solvingTime, java.lang.Object solution)
command
- - this is the original Command used to generate this solutionsolvingTime
- - this is the number of milliseconds the solver took to obtain this resultsolution
- - the satisfying A4Solution objectpublic void minimizing(java.lang.Object command, int before)
command
- - this is the original Command used to generate this solutionbefore
- - the size of the unsat core before calling minimizationpublic void minimized(java.lang.Object command, int before, int after)
command
- - this is the original Command used to generate this solutionbefore
- - the size of the unsat core before calling minimizationafter
- - the size of the unsat core after calling minimizationpublic void resultUNSAT(java.lang.Object command, long solvingTime, java.lang.Object solution)
command
- - this is the original Command used to generate this solutionsolvingTime
- - this is the number of milliseconds the solver took to obtain this resultsolution
- - the unsatisfying A4Solution objectpublic void write(java.lang.Object expr)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |