From 384494dd8bb69b67f9d8530f0b76f69c07d232fc Mon Sep 17 00:00:00 2001 From: Varun Agrawal Date: Mon, 20 Dec 2021 21:14:11 -0500 Subject: [PATCH] remove unnecessary instantiations --- gtsam/discrete/Potentials.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gtsam/discrete/Potentials.cpp b/gtsam/discrete/Potentials.cpp index 331a76c13..fa491eba3 100644 --- a/gtsam/discrete/Potentials.cpp +++ b/gtsam/discrete/Potentials.cpp @@ -26,10 +26,6 @@ using namespace std; namespace gtsam { -// explicit instantiation -template class DecisionTree; -template class AlgebraicDecisionTree; - /* ************************************************************************* */ double Potentials::safe_div(const double& a, const double& b) { // cout << boost::format("%g / %g = %g\n") % a % b % ((a == 0) ? 0 : (a / b));