Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * Top contributors (to current version): 3 : : * Morgan Deters, Mathias Preiner, 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 : : * Divisibility-by-k predicate. 14 : : */ 15 : : 16 : : #include "cvc5_public.h" 17 : : 18 : : #ifndef CVC5__DIVISIBLE_H 19 : : #define CVC5__DIVISIBLE_H 20 : : 21 : : #include <iosfwd> 22 : : #include <ostream> 23 : : #include <stddef.h> 24 : : 25 : : #include "util/integer.h" 26 : : 27 : : namespace cvc5::internal { 28 : : 29 : : /** 30 : : * The structure representing the divisibility-by-k predicate. 31 : : */ 32 : : struct Divisible 33 : : { 34 : : const Integer k; 35 : : 36 : : Divisible(const Integer& n); 37 : : 38 : 450 : bool operator==(const Divisible& d) const { 39 : 450 : return k == d.k; 40 : : } 41 : : 42 : : bool operator!=(const Divisible& d) const { 43 : : return !(*this == d); 44 : : } 45 : : }; /* struct Divisible */ 46 : : 47 : : /** 48 : : * Hash function for the Divisible objects. 49 : : */ 50 : : struct DivisibleHashFunction 51 : : { 52 : 1104 : size_t operator()(const Divisible& d) const { 53 : 1104 : return d.k.hash(); 54 : : } 55 : : }; /* struct DivisibleHashFunction */ 56 : : 57 : : inline std::ostream& operator<<(std::ostream& os, const Divisible& d); 58 : 0 : inline std::ostream& operator <<(std::ostream& os, const Divisible& d) { 59 : 0 : return os << "divisible-by-" << d.k; 60 : : } 61 : : 62 : : } // namespace cvc5::internal 63 : : 64 : : #endif /* CVC5__DIVISIBLE_H */