mirror of
https://github.com/Z3Prover/z3
synced 2025-06-19 12:23:38 +00:00
Fix file name (use same naming convention)
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
6958b9cdb6
commit
4df172e971
3 changed files with 10 additions and 10 deletions
|
@ -18,7 +18,7 @@ Notes:
|
||||||
--*/
|
--*/
|
||||||
#include"ctx_simplify_tactic.h"
|
#include"ctx_simplify_tactic.h"
|
||||||
#include"mk_simplified_app.h"
|
#include"mk_simplified_app.h"
|
||||||
#include"num_occurs_goal.h"
|
#include"goal_num_occurs.h"
|
||||||
#include"cooperate.h"
|
#include"cooperate.h"
|
||||||
#include"ast_ll_pp.h"
|
#include"ast_ll_pp.h"
|
||||||
#include"ast_smt2_pp.h"
|
#include"ast_smt2_pp.h"
|
||||||
|
@ -51,7 +51,7 @@ struct ctx_simplify_tactic::imp {
|
||||||
unsigned m_scope_lvl;
|
unsigned m_scope_lvl;
|
||||||
unsigned m_depth;
|
unsigned m_depth;
|
||||||
unsigned m_num_steps;
|
unsigned m_num_steps;
|
||||||
num_occurs_goal m_occs;
|
goal_num_occurs m_occs;
|
||||||
mk_simplified_app m_mk_app;
|
mk_simplified_app m_mk_app;
|
||||||
unsigned long long m_max_memory;
|
unsigned long long m_max_memory;
|
||||||
unsigned m_max_depth;
|
unsigned m_max_depth;
|
||||||
|
|
|
@ -3,7 +3,7 @@ Copyright (c) 2012 Microsoft Corporation
|
||||||
|
|
||||||
Module Name:
|
Module Name:
|
||||||
|
|
||||||
num_occurs_goal.cpp
|
goal_num_occurs.cpp
|
||||||
|
|
||||||
Abstract:
|
Abstract:
|
||||||
|
|
||||||
|
@ -15,10 +15,10 @@ Author:
|
||||||
Revision History:
|
Revision History:
|
||||||
|
|
||||||
--*/
|
--*/
|
||||||
#include"num_occurs_goal.h"
|
#include"goal_num_occurs.h"
|
||||||
#include"goal.h"
|
#include"goal.h"
|
||||||
|
|
||||||
void num_occurs_goal::operator()(goal const & g) {
|
void goal_num_occurs::operator()(goal const & g) {
|
||||||
expr_fast_mark1 visited;
|
expr_fast_mark1 visited;
|
||||||
unsigned sz = g.size();
|
unsigned sz = g.size();
|
||||||
for (unsigned i = 0; i < sz; i++) {
|
for (unsigned i = 0; i < sz; i++) {
|
|
@ -3,7 +3,7 @@ Copyright (c) 2012 Microsoft Corporation
|
||||||
|
|
||||||
Module Name:
|
Module Name:
|
||||||
|
|
||||||
num_occurs_goal.h
|
goal_num_occurs.h
|
||||||
|
|
||||||
Abstract:
|
Abstract:
|
||||||
|
|
||||||
|
@ -15,16 +15,16 @@ Author:
|
||||||
Revision History:
|
Revision History:
|
||||||
|
|
||||||
--*/
|
--*/
|
||||||
#ifndef _NUM_OCCURS_GOAL_H_
|
#ifndef _GOAL_NUM_OCCURS_H_
|
||||||
#define _NUM_OCCURS_GOAL_H_
|
#define _GOAL_NUM_OCCURS_H_
|
||||||
|
|
||||||
#include"num_occurs.h"
|
#include"num_occurs.h"
|
||||||
|
|
||||||
class goal;
|
class goal;
|
||||||
|
|
||||||
class num_occurs_goal : public num_occurs {
|
class goal_num_occurs : public num_occurs {
|
||||||
public:
|
public:
|
||||||
num_occurs_goal(bool ignore_ref_count1 = false, bool ignore_quantifiers = false):
|
goal_num_occurs(bool ignore_ref_count1 = false, bool ignore_quantifiers = false):
|
||||||
num_occurs(ignore_ref_count1, ignore_quantifiers) {
|
num_occurs(ignore_ref_count1, ignore_quantifiers) {
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue