public abstract class Reader extends Object
| Constructor and Description | 
|---|
| Reader() | 
| Modifier and Type | Method and Description | 
|---|---|
| abstract String | decode(int[] model)Deprecated.  | 
| abstract void | decode(int[] model,
      PrintWriter out)Produce a model using the reader format on a provided printwriter. | 
| boolean | isVerbose() | 
| abstract IProblem | parseInstance(InputStream in)Read a file from a stream. | 
| IProblem | parseInstance(Reader in)Deprecated.  | 
| IProblem | parseInstance(String filename)This is the usual method to feed a solver with a benchmark. | 
| void | setVerbosity(boolean b) | 
public IProblem parseInstance(String filename) throws ParseFormatException, IOException, ContradictionException
filename - the fully qualified name of the benchmark. The filename
            extension may by used to detect which type of benchmarks it is
            (SAT, OPB, MAXSAT, etc).ParseFormatException - if an error occurs during parsing.IOException - if an I/O error occurs.ContradictionException - if the problem is found trivially inconsistent.public abstract IProblem parseInstance(InputStream in) throws ParseFormatException, ContradictionException, IOException
in - a stream containing the benchmark.ParseFormatException - if an error occurs during parsing.IOException - if an I/O error occurs.ContradictionException - if the problem is found trivially inconsistent.@Deprecated public IProblem parseInstance(Reader in) throws ParseFormatException, ContradictionException, IOException
in - a stream containing the benchmark.ParseFormatException - if an error occurs during parsing.IOException - if an I/O error occurs.ContradictionException - if the problem is found trivially inconsistent.parseInstance(InputStream)@Deprecated public abstract String decode(int[] model)
model - a model using the Dimacs format.public abstract void decode(int[] model,
          PrintWriter out)
model - a model using the Dimacs format.out - the place where to display the modelpublic boolean isVerbose()
public void setVerbosity(boolean b)
Copyright © 2013 Centre de Recherche en Informatique de Lens (CRIL). All Rights Reserved.