fix(library/resolve_macro): typo

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2014-06-24 17:40:39 -07:00
parent 603dafbaf7
commit d7436e600b

View file

@ -131,9 +131,9 @@ public:
expr C2 = arg_types[2];
buffer<expr> R; // resolvent
if (!collect(C1, l, R, ctx))
throw_kernel_exception(env, "invalid resolve macro positive literal was not found", m);
throw_kernel_exception(env, "invalid resolve macro, positive literal was not found", m);
if (!collect(C2, not_l, R, ctx))
throw_kernel_exception(env, "invalid resolve macro neative literal was not found", m);
throw_kernel_exception(env, "invalid resolve macro, negative literal was not found", m);
return mk_bin_rop(g_or, g_false, R.size(), R.data());
}