3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-04 05:11:21 +00:00

Formatting

This commit is contained in:
Christoph M. Wintersteiger 2015-05-19 12:43:25 +01:00
parent f0b699f03a
commit a41a9c94dd

View file

@ -137,14 +137,14 @@ namespace Microsoft.Z3
} }
///
/// <summary> /// <summary>
/// Check satisfiability of asserted constraints. /// Check satisfiability of asserted constraints.
/// Produce a model that (when the objectives are bounded and /// Produce a model that (when the objectives are bounded and
/// don't use strict inequalities) meets the objectives. /// don't use strict inequalities) meets the objectives.
/// </summary> /// </summary>
/// ///
public Status Check() { public Status Check()
{
Z3_lbool r = (Z3_lbool)Native.Z3_optimize_check(Context.nCtx, NativeObject); Z3_lbool r = (Z3_lbool)Native.Z3_optimize_check(Context.nCtx, NativeObject);
switch (r) switch (r)
{ {