Skip to content

Commit f7359f3

Browse files
Fix comments
1 parent e85d1d3 commit f7359f3

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

utbot-framework/src/main/java/org/utbot/engine/overrides/UtArrayMock.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
/**
77
* Auxiliary class with static methods without implementation.
8-
* These static methods are just markers for {@link org.utbot.engine.UtBotSymbolicEngine}.,
8+
* These static methods are just markers for {@link org.utbot.engine.Traverser}.,
99
* to do some corresponding behavior, that can't be represent
1010
* with java instructions.
1111
* <p>

utbot-framework/src/main/kotlin/org/utbot/engine/ExecutionState.kt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ import org.utbot.framework.plugin.api.Step
1717
import soot.SootMethod
1818
import soot.jimple.Stmt
1919
import java.util.Objects
20+
import org.utbot.engine.symbolic.Assumption
21+
import org.utbot.framework.plugin.api.UtExecution
2022

2123
const val RETURN_DECISION_NUM = -1
2224
const val CALL_DECISION_NUM = -2
@@ -29,11 +31,11 @@ data class Edge(val src: Stmt, val dst: Stmt, val decisionNum: Int)
2931
* [INTERMEDIATE] is a label for an intermediate state which is suitable for further symbolic analysis.
3032
*
3133
* [TERMINAL] is a label for a terminal state from which we might (or might not) execute concretely and construct
32-
* UtExecution. This state represents the final state of the program execution, that is a throw or return from the outer
34+
* [UtExecution]. This state represents the final state of the program execution, that is a throw or return from the outer
3335
* method.
3436
*
3537
* [CONCRETE] is a label for a state which is not suitable for further symbolic analysis and it is also not a terminal
36-
* state. Such states are only suitable for a concrete execution and may appear from Assumptions constraints
38+
* state. Such states are only suitable for a concrete execution and may appear from [Assumption]s.
3739
*/
3840
enum class StateLabel {
3941
INTERMEDIATE,

0 commit comments

Comments
 (0)