Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
sarah.grebing
ProofScriptParser
Commits
6b3f4efe
Commit
6b3f4efe
authored
Feb 03, 2018
by
Sarah Grebing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bugfix repeat
parent
4ba1944a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
rt/src/main/java/edu/kit/iti/formal/psdbg/interpreter/Interpreter.java
...ava/edu/kit/iti/formal/psdbg/interpreter/Interpreter.java
+1
-1
ui/src/main/java/edu/kit/iti/formal/psdbg/gui/controller/InteractiveModeController.java
...ormal/psdbg/gui/controller/InteractiveModeController.java
+2
-1
No files found.
rt/src/main/java/edu/kit/iti/formal/psdbg/interpreter/Interpreter.java
View file @
6b3f4efe
...
...
@@ -629,7 +629,7 @@ public class Interpreter<T> extends DefaultASTVisitor<Object>
Set
<
GoalNode
<
T
>>
prevNodes
=
new
HashSet
<>(
prev
.
getGoals
());
Set
<
GoalNode
<
T
>>
endNodes
=
new
HashSet
<>(
end
.
getGoals
());
b
=
prevNodes
.
equals
(
endNodes
);
b
=
b
&&
counter
<=
maxIterationsRepeat
;
b
=
!
b
&&
counter
<=
maxIterationsRepeat
;
}
while
(
b
);
}
catch
(
InterpreterRuntimeException
e
)
{
logger
.
debug
(
"Catched!"
,
e
);
...
...
ui/src/main/java/edu/kit/iti/formal/psdbg/gui/controller/InteractiveModeController.java
View file @
6b3f4efe
...
...
@@ -284,7 +284,8 @@ public class InteractiveModeController {
if
(
ngoals
.
size
()
>
1
)
{
cases
.
get
(
findRoot
(
ngoals
.
get
(
0
).
node
())).
add
(
call
);
cases
.
get
(
findRoot
(
ngoals
.
get
(
0
).
node
())).
add
(
new
CasesStatement
());
CasesStatement
inner
=
new
CasesStatement
();
cases
.
get
(
findRoot
(
ngoals
.
get
(
0
).
node
())).
add
(
inner
);
for
(
Goal
newGoalNode
:
ngoals
)
{
KeyData
kdn
=
new
KeyData
(
kd
,
newGoalNode
.
node
());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment