Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tla2bAST
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
general
stups
tla2bAST
Commits
97b7cd59
Commit
97b7cd59
authored
10 years ago
by
hansen
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of github.com:hhu-stups/tla2bAST
parents
8332e01b
5127dfc5
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/tla2bAst/Translator.java
+4
-2
4 additions, 2 deletions
src/main/java/de/tla2bAst/Translator.java
with
4 additions
and
2 deletions
src/main/java/de/tla2bAst/Translator.java
+
4
−
2
View file @
97b7cd59
...
...
@@ -291,8 +291,10 @@ public class Translator implements TranslationGlobals {
PrologPrinter
prologPrinter
=
new
PrologPrinter
(
rml
,
bParser
,
moduleFile
,
moduleName
,
typeTable
);
// prologPrinter.printAsProlog(new PrintWriter(probFile), false);
prologPrinter
.
printAsProlog
(
new
PrintWriter
(
probFile
,
"UTF-8"
),
false
);
PrintWriter
outWriter
=
new
PrintWriter
(
probFile
,
"UTF-8"
);
prologPrinter
.
printAsProlog
(
outWriter
,
false
);
outWriter
.
close
();
System
.
out
.
println
(
probFile
.
getAbsolutePath
()
+
" created."
);
// prologPrinter.printAsProlog(new PrintWriter(System.out), false);
...
...
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