Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * Top contributors (to current version): 3 : : * Andrew Reynolds, Andres Noetzli, Aina Niemetz 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 : : * Implementation for parsed operators. 14 : : */ 15 : : 16 : : #include "parser/parse_op.h" 17 : : 18 : : namespace cvc5 { 19 : : 20 : 0 : std::ostream& operator<<(std::ostream& os, const ParseOp& p) 21 : : { 22 : 0 : std::stringstream out; 23 : 0 : out << "(ParseOp"; 24 [ - - ]: 0 : if (!p.d_expr.isNull()) 25 : : { 26 : 0 : out << " :expr " << p.d_expr; 27 : : } 28 [ - - ]: 0 : if (p.d_kind != cvc5::Kind::NULL_TERM) 29 : : { 30 : 0 : out << " :kind " << p.d_kind; 31 : : } 32 [ - - ]: 0 : if (!p.d_name.empty()) 33 : : { 34 : 0 : out << " :name " << p.d_name; 35 : : } 36 [ - - ]: 0 : if (!p.d_indices.empty()) 37 : : { 38 : 0 : out << " :indices ["; 39 : 0 : bool first = true; 40 [ - - ]: 0 : for (uint32_t index : p.d_indices) 41 : : { 42 [ - - ]: 0 : if (!first) 43 : : { 44 : 0 : out << ", "; 45 : : } 46 : 0 : first = false; 47 : 0 : out << index; 48 : : } 49 : 0 : out << "]"; 50 : : } 51 : 0 : out << ")"; 52 : 0 : return os << out.str(); 53 : : } 54 : : 55 : : } // namespace cvc5