Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * Top contributors (to current version): 3 : : * Tim King, Kshitij Bansal, Andres Noetzli 4 : : * 5 : : * This file is part of the cvc5 project. 6 : : * 7 : : * Copyright (c) 2009-2025 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 : : * Payload class for empty sets. 14 : : */ 15 : : 16 : : #include "expr/emptyset.h" 17 : : 18 : : #include <iostream> 19 : : 20 : : #include "expr/type_node.h" 21 : : 22 : : namespace cvc5::internal { 23 : : 24 : 0 : std::ostream& operator<<(std::ostream& out, const EmptySet& asa) { 25 : 0 : return out << "emptyset(" << asa.getType() << ')'; 26 : : } 27 : : 28 : 71932 : size_t EmptySetHashFunction::operator()(const EmptySet& es) const { 29 : 71932 : return std::hash<TypeNode>()(es.getType()); 30 : : } 31 : : 32 : : /** 33 : : * Constructs an emptyset of the specified type. Note that the argument 34 : : * is the type of the set itself, NOT the type of the elements. 35 : : */ 36 : 23674 : EmptySet::EmptySet(const TypeNode& setType) : d_type(new TypeNode(setType)) {} 37 : : 38 : 24230 : EmptySet::EmptySet(const EmptySet& es) : d_type(new TypeNode(es.getType())) {} 39 : : 40 : 0 : EmptySet& EmptySet::operator=(const EmptySet& es) { 41 : 0 : (*d_type) = es.getType(); 42 : 0 : return *this; 43 : : } 44 : : 45 : 47897 : EmptySet::~EmptySet() {} 46 : 180198 : const TypeNode& EmptySet::getType() const { return *d_type; } 47 : 35728 : bool EmptySet::operator==(const EmptySet& es) const 48 : : { 49 : 35728 : return getType() == es.getType(); 50 : : } 51 : : } // namespace cvc5::internal