I have just starting to use the Sat4j libraries. Can you direct me how to calculate the time taken to parse and simplify a given CNF input.
i have used
ISolver solver = SolverFactory.newDefault();
Reader reader = new DimacsReader(solver);
IProblem problem = reader.parseInstance(filename.cnf);
boolean check=problem.isSatisfiable();
i wish to calculate the time taken by the reader to parse and isSatisfiable. if possible kindly direct me to find the information in the image for every cnf file processed screenshot of the details i look to collect using sat4j lib Thank you for your time in advance.