Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tlc4b
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
general
stups
tlc4b
Commits
00bf9116
Commit
00bf9116
authored
10 months ago
by
dgelessus
Browse files
Options
Downloads
Patches
Plain Diff
Adjust for new behavior of OutputCollector.getTrace()
parent
1e8e660f
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/de/tlc4b/tlc/TLCResults.java
+1
-1
1 addition, 1 deletion
src/main/java/de/tlc4b/tlc/TLCResults.java
with
1 addition
and
1 deletion
src/main/java/de/tlc4b/tlc/TLCResults.java
+
1
−
1
View file @
00bf9116
...
@@ -180,7 +180,7 @@ public class TLCResults implements ToolGlobals {
...
@@ -180,7 +180,7 @@ public class TLCResults implements ToolGlobals {
private
void
evalTrace
()
{
private
void
evalTrace
()
{
List
<
TLCStateInfo
>
trace
=
OutputCollector
.
getTrace
();
List
<
TLCStateInfo
>
trace
=
OutputCollector
.
getTrace
();
TracePrinter
printer
=
null
;
TracePrinter
printer
=
null
;
if
(
trace
!=
null
)
{
if
(
!
trace
.
isEmpty
()
)
{
printer
=
new
TracePrinter
(
trace
,
tlcOutputInfo
);
printer
=
new
TracePrinter
(
trace
,
tlcOutputInfo
);
}
else
if
(
OutputCollector
.
getInitialState
()
!=
null
)
{
}
else
if
(
OutputCollector
.
getInitialState
()
!=
null
)
{
printer
=
new
TracePrinter
(
OutputCollector
.
getInitialState
(),
tlcOutputInfo
);
printer
=
new
TracePrinter
(
OutputCollector
.
getInitialState
(),
tlcOutputInfo
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment