@@ -125,12 +125,12 @@ public enum Expectation {
125125 * This class contains the information about the test fixtures that is loaded
126126 * via the YAML.
127127 *
128- * @param contains a list of strings that are expected in the SMT translation
128+ * @param contains a list of strings that are expected in the SMT translation
129129 * @param smtSettings required key/values in the smt settings.
130- * @param expected expected output of Z3
131- * @param state state of the test
132- * @param javaSrc path to necessary java sources
133- * @param keySrc contents of the key file to be loaded.
130+ * @param expected expected output of Z3
131+ * @param state state of the test
132+ * @param javaSrc path to necessary java sources
133+ * @param keySrc contents of the key file to be loaded.
134134 */
135135 public record TestData (List <String > contains ,
136136 Properties smtSettings ,
@@ -157,15 +157,16 @@ private LoadedTestData load(String name) throws IOException, ProblemLoaderExcept
157157 Sequent sequent = proof .root ().sequent ();
158158
159159 SMTSettings settings = new DefaultSMTSettings (proof .getSettings ().getSMTSettings (),
160- ProofIndependentSettings .DEFAULT_INSTANCE .getSMTSettings (),
161- proof .getSettings ().getNewSMTSettings (), proof );
160+ ProofIndependentSettings .DEFAULT_INSTANCE .getSMTSettings (),
161+ proof .getSettings ().getNewSMTSettings (), proof );
162162
163163 if (smtSettings != null ) {
164164 settings .getNewSettings ().readSettings (smtSettings );
165165 }
166166
167167 ModularSMTLib2Translator translator = new ModularSMTLib2Translator ();
168- var translation = translator .translateProblem (sequent , env .getServices (), settings ).toString ();
168+ var translation =
169+ translator .translateProblem (sequent , env .getServices (), settings ).toString ();
169170 env .dispose ();
170171 return new LoadedTestData (name , this , translation );
171172 }
0 commit comments