当前位置: 首页>>代码示例>>C++>>正文


C++ goal::m方法代码示例

本文整理汇总了C++中goal::m方法的典型用法代码示例。如果您正苦于以下问题:C++ goal::m方法的具体用法?C++ goal::m怎么用?C++ goal::m使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在goal的用法示例。


在下文中一共展示了goal::m方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: is_unbounded

bool is_unbounded(goal const & g) {
    ast_manager & m = g.m();
    bound_manager bm(m);
    bm(g);
    is_unbounded_proc proc(bm);
    return test(g, proc);
}
开发者ID:CHolmes3,项目名称:z3,代码行数:7,代码来源:add_bounds_tactic.cpp

示例2: operator

 virtual result operator()(goal const & g) {
     proc p(g.m());
     for_each_expr_at(p, g);
     if (m_avg)
         return p.m_counter == 0 ? 0.0 : static_cast<double>(p.m_acc_degree)/static_cast<double>(p.m_counter);
     else
         return p.m_max_degree;
 }
开发者ID:jackluo923,项目名称:juxta,代码行数:8,代码来源:probe_arith.cpp

示例3: assert_goal

 void solver_exp::assert_goal(goal const & g) {
     SASSERT(&(g.m()) == &m_ext_mng);
     ast_translation translator(m_ext_mng, m, false);
     unsigned sz = g.size();
     for (unsigned i = 0; i < sz; i++) {
         assert_expr_core(g.form(i), translator);
     }
 }
开发者ID:sukwon0709,项目名称:byterun,代码行数:8,代码来源:smt_solver_exp.cpp

示例4: operator

 result operator()(goal const & g) override {
     proc p(g.m());
     unsigned sz = g.size();
     expr_fast_mark1 visited;
     for (unsigned i = 0; i < sz; i++) {
         for_each_expr_core<proc, expr_fast_mark1, true, true>(p, visited, g.form(i));
     }
     const double total = ackr_helper::calculate_lemma_bound(p.m_fun2terms);
     TRACE("ackr_bound_probe", tout << "total=" << total << std::endl;);
开发者ID:angr,项目名称:angr-z3,代码行数:9,代码来源:ackr_bound_probe.cpp

示例5: operator

 virtual result operator()(goal const & g) {
     proc p(g.m(), m_bool, m_family);
     unsigned sz = g.size();
     expr_fast_mark1 visited;
     for (unsigned i = 0; i < sz; i++) {
         for_each_expr_core<proc, expr_fast_mark1, true, true>(p, visited, g.form(i));
     }
     return result(p.m_counter);
 }
开发者ID:jackluo923,项目名称:juxta,代码行数:9,代码来源:probe.cpp

示例6:

// Copy configuration: depth, models/proofs/cores flags, and precision from src.
// The assertions are not copied
goal::goal(goal const & src, bool):
    m_manager(src.m()),
    m_ref_count(0),
    m_depth(src.m_depth), 
    m_models_enabled(src.models_enabled()),
    m_proofs_enabled(src.proofs_enabled()), 
    m_core_enabled(src.unsat_core_enabled()), 
    m_inconsistent(false), 
    m_precision(src.m_precision) {
}
开发者ID:CharudattaSChitale,项目名称:sygus-comp14,代码行数:12,代码来源:goal.cpp

示例7: operator

 virtual result operator()(goal const & g) {
     bool found_non_01 = false;
     bound_manager bm(g.m());
     bm(g);
     rational l, u; bool st;
     bound_manager::iterator it  = bm.begin();
     bound_manager::iterator end = bm.end();
     for (; it != end; ++it) {
         expr * t = *it;
         if (bm.has_lower(t, l, st) && bm.has_upper(t, u, st) && (l.is_zero() || l.is_one()) && (u.is_zero() || u.is_one()))
             continue;
         if (found_non_01)
             return false;
         found_non_01 = true;
     }
     return true;
 }
开发者ID:therealoneisneo,项目名称:Z3,代码行数:17,代码来源:qflia_tactic.cpp

示例8: is_lp

static bool is_lp(goal const & g) {
    ast_manager & m = g.m();
    arith_util u(m);
    unsigned sz = g.size();
    for (unsigned i = 0; i < sz; i++) {
        expr * f  = g.form(i);
        bool sign = false;
        while (m.is_not(f, f))
            sign = !sign;
        if (m.is_eq(f) && !sign) {
            if (m.get_sort(to_app(f)->get_arg(0))->get_family_id() != u.get_family_id())
                return false;
            continue;
        }
        if (u.is_le(f) || u.is_ge(f) || u.is_lt(f) || u.is_gt(f))
            continue;
        return false;
    }
    return true;
}
开发者ID:jackluo923,项目名称:juxta,代码行数:20,代码来源:probe_arith.cpp

示例9: is_lira

static bool is_lira(goal const & g) {
    is_non_nira_functor p(g.m(), true, true, true, true);
    return !test(g, p);
}
开发者ID:jackluo923,项目名称:juxta,代码行数:4,代码来源:probe_arith.cpp

示例10: is_qfnia

static bool is_qfnia(goal const & g) {
    is_non_nira_functor p(g.m(), true, false, false, false);
    return !test(g, p);
}
开发者ID:jackluo923,项目名称:juxta,代码行数:4,代码来源:probe_arith.cpp

示例11: is_qflra

static bool is_qflra(goal const & g) {
    is_non_qflira_functor p(g.m(), false, true);
    return !test(g, p);
}
开发者ID:jackluo923,项目名称:juxta,代码行数:4,代码来源:probe_arith.cpp

示例12: operator

    virtual result operator()(goal const & g) {
        bv1_blaster_tactic t(g.m());
        return t.is_target(g);

    }
开发者ID:CHolmes3,项目名称:z3,代码行数:5,代码来源:bv1_blaster_tactic.cpp

示例13: is_qfufnra

static bool is_qfufnra(goal const& g) {
    is_non_qfufnra_functor p(g.m());
    return !g.proofs_enabled() && !g.unsat_core_enabled() && !test(g, p) && p.has_nonlinear();
}
开发者ID:AleksandarZeljic,项目名称:z3,代码行数:4,代码来源:probe_arith.cpp


注:本文中的goal::m方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。