cvc5-cvc5-1.2.0.src.theory.arith.linear.arithvar.cpp Maven / Gradle / Ivy
The newest version!
/******************************************************************************
* Top contributors (to current version):
* Tim King
*
* This file is part of the cvc5 project.
*
* Copyright (c) 2009-2024 by the authors listed in the file AUTHORS
* in the top-level source directory and their institutional affiliations.
* All rights reserved. See the file COPYING in the top-level source
* directory for licensing information.
* ****************************************************************************
*
* [[ Add one-line brief description here ]]
*
* [[ Add lengthier description here ]]
* \todo document this file
*/
#include "theory/arith/linear/arithvar.h"
#include
#include
namespace cvc5::internal {
namespace theory {
namespace arith::linear {
const ArithVar ARITHVAR_SENTINEL = std::numeric_limits::max();
bool debugIsASet(const std::vector& variables){
std::set asSet(variables.begin(), variables.end());
return asSet.size() == variables.size();
}
} // namespace arith
} // namespace theory
} // namespace cvc5::internal