Search in sources :

Example 1 with Method

use of com.dat3m.dartagnan.configuration.Method in project Dat3M by hernanponcedeleon.

the class OptionsPane method getOptions.

public UiOptions getOptions() {
    int bound = Integer.parseInt(boundField.getText());
    int timeout = Integer.parseInt(timeoutField.getText());
    Arch target = (Arch) targetPane.getSelectedItem();
    Method method = (Method) methodPane.getSelectedItem();
    Solvers solver = (Solvers) solverPane.getSelectedItem();
    return new UiOptions(target, method, bound, solver, timeout);
}
Also used : Solvers(org.sosy_lab.java_smt.SolverContextFactory.Solvers) Arch(com.dat3m.dartagnan.configuration.Arch) UiOptions(com.dat3m.ui.utils.UiOptions) Method(com.dat3m.dartagnan.configuration.Method)

Aggregations

Arch (com.dat3m.dartagnan.configuration.Arch)1 Method (com.dat3m.dartagnan.configuration.Method)1 UiOptions (com.dat3m.ui.utils.UiOptions)1 Solvers (org.sosy_lab.java_smt.SolverContextFactory.Solvers)1