Skip to content
Snippets Groups Projects
Commit 51dd9459 authored by Etienne Kneuss's avatar Etienne Kneuss
Browse files

Set contains e was wrongly printed as e contains Set

parent d1592f32
No related branches found
No related tags found
No related merge requests found
......@@ -141,7 +141,7 @@ object ScalaPrinter {
case FiniteSet(rs) => ppNary(sb, rs, "Set(", ", ", ")", lvl)
case FiniteMultiset(rs) => ppNary(sb, rs, "{|", ", ", "|}", lvl)
case EmptyMultiset(_) => sys.error("Not Valid Scala")
case ElementOfSet(s,e) => ppBinary(sb, s, e, " contains ", lvl)
case ElementOfSet(e, s) => ppBinary(sb, s, e, " contains ", lvl)
//case ElementOfSet(s,e) => ppBinary(sb, s, e, " \u2208 ", lvl) // \in
//case SubsetOf(l,r) => ppBinary(sb, l, r, " \u2286 ", lvl) // \subseteq
//case Not(SubsetOf(l,r)) => ppBinary(sb, l, r, " \u2288 ", lvl) // \notsubseteq
......
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