Lines Matching refs:B0
91 auto B0 = Ctx.atom(); in TEST() local
93 auto B = Ctx.disj(Ctx.conj(B0, Ctx.neg(B1)), Ctx.conj(Ctx.neg(B0), B1)); in TEST()
234 auto B0 = Ctx.atom(); in TEST() local
235 std::vector<BoolValue *> Constraints({B0, Ctx.neg(B0)}); in TEST()
276 auto B0 = Ctx.atom(); in TEST() local
278 auto Impl = Ctx.disj(Ctx.neg(B0), B1); in TEST()
279 std::vector<BoolValue *> Constraints({B0, Impl}); in TEST()
303 auto B0 = Ctx.atom(); in TEST() local
305 auto Iff = Ctx.conj(Ctx.disj(Ctx.neg(B0), B1), Ctx.disj(B0, Ctx.neg(B1))); in TEST()
306 std::vector<BoolValue *> Constraints({B0, Iff}); in TEST()
335 auto B0 = Ctx.atom(); in TEST() local
337 auto XOR = Ctx.disj(Ctx.conj(B0, Ctx.neg(B1)), Ctx.conj(Ctx.neg(B0), B1)); in TEST()
338 std::vector<BoolValue *> Constraints({B0, XOR}); in TEST()