You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Round brackets can be escaped so the correct syntax is
match(Pb2+(aq) + 2Cl-(aq) = PbCl2(s))
but it seems that the algorithm cannot cope with ')' being followed by space (which is a word terminator as defined in pattern match where a word is a sequence of characters between spaces). So match(Pb2+(aq)) works but as soon as you go beyond this you hit the bug.
The text was updated successfully, but these errors were encountered:
From an email discussion with Tim and Phil:
Round brackets can be escaped so the correct syntax is
match(Pb2+(aq) + 2Cl-(aq) = PbCl2(s))
but it seems that the algorithm cannot cope with ')' being followed by space (which is a word terminator as defined in pattern match where a word is a sequence of characters between spaces). So match(Pb2+(aq)) works but as soon as you go beyond this you hit the bug.
The text was updated successfully, but these errors were encountered: