Added special lines for static variables needed for template classes

release/4.3a0
Viorela Ila 2010-01-27 19:45:31 +00:00
parent f8d934eaa1
commit 06a062c931
1 changed files with 6 additions and 0 deletions

View File

@ -120,6 +120,12 @@ namespace gtsam {
*/
VectorConfig optimize(SubgraphPreconditioner& system) const;
};
template<class G, class T> const size_t SubgraphPCG<G,T>::maxIterations_;
template<class G, class T> const bool SubgraphPCG<G,T>::verbose_;
template<class G, class T> const double SubgraphPCG<G,T>::epsilon_;
template<class G, class T> const double SubgraphPCG<G,T>::epsilon_abs_;
} // nsamespace gtsam
#endif /* SUBGRAPHPRECONDITIONER_H_ */