summaryrefslogtreecommitdiff
path: root/src/theory/arith/nl_lemma_utils.h
blob: 74886a1fb6f4a183bce3bf94be2d36b4212cea30 (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
/*********************                                                        */
/*! \file nl_lemma_utils.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 Utilities for processing lemmas from the non-linear solver
 **/

#ifndef CVC4__THEORY__ARITH__NL_LEMMA_UTILS_H
#define CVC4__THEORY__ARITH__NL_LEMMA_UTILS_H

#include <tuple>
#include <vector>
#include "expr/node.h"

namespace CVC4 {
namespace theory {
namespace arith {

/**
 * A side effect of adding a lemma in the non-linear solver. This is used
 * to specify how the state of the non-linear solver should update. This
 * includes:
 * - A set of secant points to record (for transcendental secant plane
 * inferences).
 */
struct NlLemmaSideEffect
{
  NlLemmaSideEffect() {}
  ~NlLemmaSideEffect() {}
  /** secant points to add
   *
   * A member (tf, d, c) in this vector indicates that point c should be added
   * to the list of secant points for an application of a transcendental
   * function tf for Taylor degree d. This is used for incremental linearization
   * for underapproximation (resp. overapproximations) of convex (resp.
   * concave) regions of transcendental functions. For details, see
   * Cimatti et al., CADE 2017.
   */
  std::vector<std::tuple<Node, unsigned, Node> > d_secantPoint;
};

}  // namespace arith
}  // namespace theory
}  // namespace CVC4

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