Skip to content
Snippets Groups Projects
Commit b81e4887 authored by Hans-Peter Deifel's avatar Hans-Peter Deifel
Browse files

Fix whitespace

parent 9631d5b7
No related branches found
No related tags found
No related merge requests found
......@@ -155,18 +155,18 @@ let choicePrint () =
with End_of_file -> ()
let choiceNom2fix () =
try
while true do
let input = read_line () in
if not (GenAndComp.isEmptyString input) then
let f = CoAlgFormula.importFormula input in
let str = CoAlgFormula.exportFormula f in
incr counter;
print_string("\nFormula " ^ (string_of_int !counter) ^ ": " ^ str ^ "\n");
flush stdout;
else ()
done
with End_of_file -> ()
try
while true do
let input = read_line () in
if not (GenAndComp.isEmptyString input) then
let f = CoAlgFormula.importFormula input in
let str = CoAlgFormula.exportFormula f in
incr counter;
print_string("\nFormula " ^ (string_of_int !counter) ^ ": " ^ str ^ "\n");
flush stdout;
else ()
done
with End_of_file -> ()
let choiceNNF () =
try
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment