summaryrefslogtreecommitdiff
path: root/src/theory/subs_minimize.h
blob: 3f351de7ed6af01a1bf3e0ba4036ae39388bf8ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*********************                                                        */
/*! \file subs_minimize.h
 ** \verbatim
 ** Top contributors (to current version):
 **   Andrew Reynolds
 ** This file is part of the CVC4 project.
 ** Copyright (c) 2009-2019 by the authors listed in the file AUTHORS
 ** in the top-level source directory) and their institutional affiliations.
 ** All rights reserved.  See the file COPYING in the top-level source
 ** directory for licensing information.\endverbatim
 **
 ** \brief Substitution minimization.
 **/

#include "cvc4_private.h"

#ifndef __CVC4__THEORY__SUBS_MINIMIZE_H
#define __CVC4__THEORY__SUBS_MINIMIZE_H

#include <vector>

#include "expr/node.h"

namespace CVC4 {
namespace theory {

/** SubstitutionMinimize
 *
 * This class is used for finding a minimal substitution under which an
 * evaluation holds.
 */
class SubstitutionMinimize
{
 public:
  SubstitutionMinimize();
  ~SubstitutionMinimize() {}
  /** find
   *
   * If t { vars -> subs } rewrites to target, this method returns true, and
   * vars[i_1], ..., vars[i_n] are added to reqVars, such that i_1, ..., i_n are
   * distinct, and t { vars[i_1] -> subs[i_1], ..., vars[i_n] -> subs[i_n] }
   * rewrites to target.
   *
   * If t { vars -> subs } does not rewrite to target, this method returns
   * false.
   */
  static bool find(Node t,
                   Node target,
                   const std::vector<Node>& vars,
                   const std::vector<Node>& subs,
                   std::vector<Node>& reqVars);
  /** find with implied
   *
   * This method should be called on a formula t.
   *
   * If t { vars -> subs } rewrites to true, this method returns true,
   * vars[i_1], ..., vars[i_n] are added to reqVars, and
   * vars[i_{n+1}], ..., vars[i_{n+m}] are added to impliedVars such that
   * i_1...i_{n+m} are distinct, i_{n+1} < ... < i_{n+m}, and:
   *
   * (1) t { vars[i_1]->subs[i_1], ..., vars[i_{n+k}]->subs[i_{n+k}] } implies
   * vars[i_{n+k+1}] = subs[i_{n+k+1}] for k = 0, ..., m-1.
   *
   * (2) t { vars[i_1] -> subs[i_1], ..., vars[i_{n+m}] -> subs[i_{n+m}] }
   * rewrites to true.
   *
   * For example, given (x>0 ^ x = y ^ y = z){ x -> 1, y -> 1, z -> 1, w -> 0 },
   * this method may add { x } to reqVars, and { y, z } to impliedVars.
   *
   * Notice that the order of variables in vars matters. By the semantics above,
   * variables that appear earlier in the variable list vars are more likely
   * to appear in reqVars, whereas those later in the vars are more likely to
   * appear in impliedVars.
   */
  static bool findWithImplied(Node t,
                              const std::vector<Node>& vars,
                              const std::vector<Node>& subs,
                              std::vector<Node>& reqVars,
                              std::vector<Node>& impliedVars);

 private:
  /** Common helper function for the above functions. */
  static bool findInternal(Node t,
                           Node target,
                           const std::vector<Node>& vars,
                           const std::vector<Node>& subs,
                           std::vector<Node>& reqVars);
  /** is singular arg
   *
   * Returns true if
   *   <k>( ... t_{arg-1}, n, t_{arg+1}...) = c
   * always holds for some constant c.
   */
  static bool isSingularArg(Node n, Kind k, unsigned arg);
};

}  // namespace theory
}  // namespace CVC4

#endif /* __CVC4__THEORY__SUBS_MINIMIZE_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback