Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tlatools
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
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
tlatools
Commits
fab45b18
Commit
fab45b18
authored
Feb 3, 2018
by
William Schultz
Committed by
Markus Alexander Kuppe
Feb 7, 2018
Browse files
Options
Downloads
Patches
Plain Diff
Make extra TLC DOT parameters sub arguments of -dump
parent
7f04a516
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
tlatools/src/tlc2/TLC.java
+0
-12
0 additions, 12 deletions
tlatools/src/tlc2/TLC.java
tlatools/test/tlc2/tool/DumpAsDotTest.java
+1
-1
1 addition, 1 deletion
tlatools/test/tlc2/tool/DumpAsDotTest.java
with
1 addition
and
13 deletions
tlatools/src/tlc2/TLC.java
+
0
−
12
View file @
fab45b18
...
...
@@ -357,18 +357,6 @@ public class TLC
printErrorMsg
(
"Error: A file name for dumping states required."
);
return
false
;
}
}
else
if
(
args
[
index
].
equals
(
"-colorize"
))
{
// Colorize state transition edges in the DOT state graph. Each action
// gets a unique color.
colorize
=
true
;
index
++;
}
else
if
(
args
[
index
].
equals
(
"-actionLabels"
))
{
// Label transition edges in the state graph with the name of the
// associated action. Can potentially add a large amount of visual clutter for
// large graphs with many actions.
actionLabels
=
true
;
index
++;
}
else
if
(
args
[
index
].
equals
(
"-coverage"
))
{
index
++;
...
...
This diff is collapsed.
Click to expand it.
tlatools/test/tlc2/tool/DumpAsDotTest.java
+
1
−
1
View file @
fab45b18
...
...
@@ -44,7 +44,7 @@ import tlc2.tool.liveness.ModelCheckerTestCase;
public
class
DumpAsDotTest
extends
ModelCheckerTestCase
{
public
DumpAsDotTest
()
{
super
(
"MC"
,
"BasicModel"
,
new
String
[]
{
"-colorize
"
,
"-
action
L
abels"
,
"-dump"
,
"dot"
,
System
.
getProperty
(
"java.io.tmpdir"
)
+
File
.
separator
+
"DumpAsDotTest"
});
super
(
"MC"
,
"BasicModel"
,
new
String
[]
{
"-
dump"
,
"dot,
colorize
,
action
l
abels"
,
System
.
getProperty
(
"java.io.tmpdir"
)
+
File
.
separator
+
"DumpAsDotTest"
});
}
@Test
...
...
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