You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
894 B
29 lines
894 B
#pragma once
|
|
|
|
#include "storm/storage/BitVector.h"
|
|
#include "storm/solver/SmtSolver.h"
|
|
#include "storm/utility/solver.h"
|
|
|
|
namespace storm {
|
|
namespace storage {
|
|
namespace geometry {
|
|
template<typename ValueType>
|
|
class ReduceVertexCloud {
|
|
public:
|
|
ReduceVertexCloud(std::shared_ptr<storm::utility::solver::SmtSolverFactory>& smtSolverFactory, ValueType wiggle = storm::utility::convertNumber<ValueType>(0.001))
|
|
: smtSolverFactory(smtSolverFactory), wiggle(wiggle)
|
|
{
|
|
|
|
}
|
|
|
|
storm::storage::BitVector eliminate(std::vector<std::map<uint64_t, ValueType>> const& input, uint64_t maxdimension);
|
|
|
|
private:
|
|
std::shared_ptr<storm::utility::solver::SmtSolverFactory>& smtSolverFactory;
|
|
ValueType wiggle;
|
|
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|