class Z3::Printer::PrintedExpr
Attributes
Public Class Methods
Source
# File lib/z3/printer.rb, line 11 def initialize(str, priority=false) @str = str @priority = priority end
Public Instance Methods
Source
# File lib/z3/printer.rb, line 18 def enforce_parentheses if @priority "(#{@str})" else @str end end