@@ -167,7 +167,7 @@ <T extends Formula> T makeApplication(
167
167
*
168
168
* <p>Please be aware that calling this method might cause extensive stack usage depending on the
169
169
* nesting of the given formula and the given {@link FormulaVisitor}. Additionally, sub-formulas
170
- * that are used several times in the formula might be visited several times. For a efficient
170
+ * that are used several times in the formula might be visited several times. For an efficient
171
171
* formula traversing, we also provide {@link #visitRecursively(Formula, FormulaVisitor)}.
172
172
*
173
173
* @param f formula to be visited
@@ -185,7 +185,7 @@ <T extends Formula> T makeApplication(
185
185
* and thus is not prone to StackOverflowErrors.
186
186
*
187
187
* <p>Furthermore, this method also guarantees that every equal part of the formula is visited
188
- * only once. Thus it can be used to traverse DAG-like formulas efficiently.
188
+ * only once. Thus, it can be used to traverse DAG-like formulas efficiently.
189
189
*/
190
190
void visitRecursively (Formula f , FormulaVisitor <TraversalProcess > rFormulaVisitor );
191
191
@@ -196,7 +196,7 @@ <T extends Formula> T makeApplication(
196
196
* and thus is not prone to StackOverflowErrors.
197
197
*
198
198
* <p>Furthermore, this method also guarantees that every equal part of the formula is visited
199
- * only once. Thus it can be used to traverse DAG-like formulas efficiently.
199
+ * only once. Thus, it can be used to traverse DAG-like formulas efficiently.
200
200
*
201
201
* @param pFormulaVisitor Transformation described by the user.
202
202
*/
@@ -253,10 +253,10 @@ <T extends Formula> T makeApplication(
253
253
* possible not use logical or mathematical operators, or keywords strongly depending on SMTlib.
254
254
*
255
255
* <p>If a variable name is rejected, a possibility is escaping, e.g. either substituting the
256
- * whole variable name or just every invalid character with an escaped form. We recommend to use
257
- * an escape sequence based on the token "JAVASMT", because it might be unusual enough to appear
258
- * when encoding a user's problem in SMT. Please not that you might also have to handle escaping
259
- * the escape sequence. Examples:
256
+ * whole variable name or just every invalid character with an escaped form. We recommend using an
257
+ * escape sequence based on the token "JAVASMT", because it might be unusual enough to appear when
258
+ * encoding a user's problem in SMT. Please note that you might also have to handle escaping the
259
+ * escape sequence. Examples:
260
260
*
261
261
* <ul>
262
262
* <li>the invalid variable name <code>"="</code> (logical operator for equality) can be
0 commit comments