LCOV - code coverage report
Current view: top level - buildbot/coverage/build/src/preprocessing/passes - pseudo_boolean_processor.h (source / functions) Hit Total Coverage
Test: coverage.info Lines: 2 2 100.0 %
Date: 2024-08-29 11:49:29 Functions: 1 1 100.0 %
Branches: 5 8 62.5 %

           Branch data     Line data    Source code
       1                 :            : /******************************************************************************
       2                 :            :  * Top contributors (to current version):
       3                 :            :  *   Tim King, Andres Noetzli, Aina Niemetz
       4                 :            :  *
       5                 :            :  * This file is part of the cvc5 project.
       6                 :            :  *
       7                 :            :  * Copyright (c) 2009-2024 by the authors listed in the file AUTHORS
       8                 :            :  * in the top-level source directory and their institutional affiliations.
       9                 :            :  * All rights reserved.  See the file COPYING in the top-level source
      10                 :            :  * directory for licensing information.
      11                 :            :  * ****************************************************************************
      12                 :            :  *
      13                 :            :  * [[ Add one-line brief description here ]]
      14                 :            :  *
      15                 :            :  * [[ Add lengthier description here ]]
      16                 :            :  * \todo document this file
      17                 :            :  */
      18                 :            : 
      19                 :            : #include "cvc5_private.h"
      20                 :            : 
      21                 :            : #ifndef CVC5__PREPROCESSING__PASSES__PSEUDO_BOOLEAN_PROCESSOR_H
      22                 :            : #define CVC5__PREPROCESSING__PASSES__PSEUDO_BOOLEAN_PROCESSOR_H
      23                 :            : 
      24                 :            : #include <optional>
      25                 :            : #include <unordered_set>
      26                 :            : #include <vector>
      27                 :            : 
      28                 :            : #include "context/cdhashmap.h"
      29                 :            : #include "context/cdo.h"
      30                 :            : #include "expr/node.h"
      31                 :            : #include "preprocessing/preprocessing_pass.h"
      32                 :            : #include "theory/substitutions.h"
      33                 :            : #include "util/rational.h"
      34                 :            : 
      35                 :            : namespace cvc5::internal {
      36                 :            : namespace preprocessing {
      37                 :            : namespace passes {
      38                 :            : 
      39                 :            : class PseudoBooleanProcessor : public PreprocessingPass
      40                 :            : {
      41                 :            :  public:
      42                 :            :   PseudoBooleanProcessor(PreprocessingPassContext* preprocContext);
      43                 :            : 
      44                 :            :  protected:
      45                 :            :   PreprocessingPassResult applyInternal(
      46                 :            :       AssertionPipeline* assertionsToPreprocess) override;
      47                 :            : 
      48                 :            :  private:
      49                 :            :   /** Assumes that the assertions have been rewritten. */
      50                 :            :   void learn(const std::vector<Node>& assertions);
      51                 :            : 
      52                 :            :   /** Assumes that the assertions have been rewritten. */
      53                 :            :   void applyReplacements(AssertionPipeline* assertionsToPreprocess);
      54                 :            : 
      55                 :            :   bool likelyToHelp() const;
      56                 :            : 
      57                 :            :   bool isPseudoBoolean(Node v) const;
      58                 :            : 
      59                 :            :   // Adds the fact the that integert typed variable v
      60                 :            :   //   must be >= 0 to the context.
      61                 :            :   // This is explained by the explanation exp.
      62                 :            :   // exp cannot be null.
      63                 :            :   void addGeqZero(Node v, Node exp);
      64                 :            : 
      65                 :            :   // Adds the fact the that integert typed variable v
      66                 :            :   //   must be <= 1 to the context.
      67                 :            :   // This is explained by the explanation exp.
      68                 :            :   // exp cannot be null.
      69                 :            :   void addLeqOne(Node v, Node exp);
      70                 :            : 
      71                 :        802 :   static inline bool isIntVar(Node v)
      72                 :            :   {
      73 [ +  + ][ +  - ]:        802 :     return v.isVar() && v.getType().isInteger();
         [ +  + ][ -  - ]
      74                 :            :   }
      75                 :            : 
      76                 :            :   void clear();
      77                 :            : 
      78                 :            :   /** Assumes that the assertion has been rewritten. */
      79                 :            :   void learn(Node assertion);
      80                 :            : 
      81                 :            :   /** Rewrites a node  */
      82                 :            :   Node applyReplacements(Node pre);
      83                 :            : 
      84                 :            :   void learnInternal(Node assertion, bool negated, Node orig);
      85                 :            :   void learnRewrittenGeq(Node assertion, bool negated, Node orig);
      86                 :            : 
      87                 :            :   void addSub(Node from, Node to);
      88                 :            :   void learnGeqSub(Node geq);
      89                 :            : 
      90                 :            :   static Node mkGeqOne(Node v);
      91                 :            : 
      92                 :            :   // x ->  <geqZero, leqOne>
      93                 :            :   typedef context::CDHashMap<Node, std::pair<Node, Node>> CDNode2PairMap;
      94                 :            :   CDNode2PairMap d_pbBounds;
      95                 :            :   theory::SubstitutionMap d_subCache;
      96                 :            : 
      97                 :            :   typedef std::unordered_set<Node> NodeSet;
      98                 :            :   NodeSet d_learningCache;
      99                 :            : 
     100                 :            :   context::CDO<unsigned> d_pbs;
     101                 :            : 
     102                 :            :   // decompose into \sum pos >= neg + off
     103                 :            :   std::optional<Rational> d_off;
     104                 :            :   std::vector<Node> d_pos;
     105                 :            :   std::vector<Node> d_neg;
     106                 :            : 
     107                 :            :   /** Returns true if successful. */
     108                 :            :   bool decomposeAssertion(Node assertion, bool negated);
     109                 :            : };
     110                 :            : 
     111                 :            : }  // namespace passes
     112                 :            : }  // namespace preprocessing
     113                 :            : }  // namespace cvc5::internal
     114                 :            : 
     115                 :            : #endif  // CVC5__PREPROCESSING__PASSES__PSEUDO_BOOLEAN_PROCESSOR_H

Generated by: LCOV version 1.14