Wert zuweisen Ich bin neu in Z3.Bool Variable in Z3 C api
Ich definiere eine Bool-Typ-Variable a:
Z3_sort bool_type = Z3_mk_bool_sort (ctx);
Z3_ast a = Z3_mk_const (ctx, Z3_mk_string_symbol (ctx, "a"), bool_type);
Meine Frage ist, wie kann ich einen anderen Wert zuweisen, scheint, ich kann Z3_L_TRUE nicht direkt zuweisen.
Irgendwelche Vorschläge? Vielen Dank!