Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文字列変数が定義されているclause1 = "((1 & z[0]) != 0)"
clause1 = "((1 & z[0]) != 0)"
その eval() はBoolRef: 1 & v__a != 0 、実際に必要なときに提供しますBoolRef: ((1 & v__a) != 0)
BoolRef: 1 & v__a != 0
BoolRef: ((1 & v__a) != 0)
ブラケットを eval() に保持し、他のすべてを評価する方法