Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SMT/src/org/smtlib/sexpr/Printer.java
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public Void visit(ISymbol e) throws IVisitor.VisitorException { // FIX - need s-
/*@Nullable*/
@Override
public Void visit(IDecimal e) throws IVisitor.VisitorException {
try { w.append(e.value().toString()); } catch (IOException ex) { throw new IVisitor.VisitorException(ex); }
try { w.append(e.value().toPlainString()); } catch (IOException ex) { throw new IVisitor.VisitorException(ex); }
return null;
}

Expand Down