Remove an unneeded virtual method from EigenSparseCholesky.

Change-Id: I4f9d1730feb98b21db8dea9cc1357a365fb8fcb8
This commit is contained in:
Sameer Agarwal
2018-03-26 13:32:52 -07:00
parent 0258b2a0b0
commit edffd386d2
-2
View File
@@ -54,8 +54,6 @@ class EigenSparseCholesky : public SparseCholesky {
// SparseCholesky interface.
virtual ~EigenSparseCholesky();
virtual CompressedRowSparseMatrix::StorageType StorageType() const = 0;
virtual LinearSolverTerminationType Factorize(
const Eigen::SparseMatrix<double>& lhs, std::string* message) = 0;
virtual LinearSolverTerminationType Solve(const double* rhs,
double* solution,
std::string* message) = 0;