summaryrefslogtreecommitdiff
path: root/src/smt/command.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/smt/command.h')
-rw-r--r--src/smt/command.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/smt/command.h b/src/smt/command.h
index 19b858bd6..63f1f0f33 100644
--- a/src/smt/command.h
+++ b/src/smt/command.h
@@ -1301,13 +1301,13 @@ class CVC4_PUBLIC SetExpressionNameCommand : public Command
class CVC4_PUBLIC DatatypeDeclarationCommand : public Command
{
private:
- std::vector<DatatypeType> d_datatypes;
+ std::vector<Type> d_datatypes;
public:
- DatatypeDeclarationCommand(const DatatypeType& datatype);
+ DatatypeDeclarationCommand(const Type& datatype);
- DatatypeDeclarationCommand(const std::vector<DatatypeType>& datatypes);
- const std::vector<DatatypeType>& getDatatypes() const;
+ DatatypeDeclarationCommand(const std::vector<Type>& datatypes);
+ const std::vector<Type>& getDatatypes() const;
void invoke(SmtEngine* smtEngine) override;
Command* exportTo(ExprManager* exprManager,
ExprManagerMapCollection& variableMap) override;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback