Skip to content
Snippets Groups Projects
Commit a3e64d2b authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Rename cov --> sigma

parent 9b0bf0d7
No related branches found
No related tags found
1 merge request!366Resolve "Complete state vector new data structure?"
......@@ -202,7 +202,7 @@ class Problem : public std::enable_shared_from_this<Problem>
const VectorComposite& _cov = VectorComposite());
FrameBasePtr applyPriorOptions(const TimeStamp& _ts);
FrameBasePtr setPriorFactor(const VectorComposite &_state,
const VectorComposite &_cov,
const VectorComposite &_sigma,
const TimeStamp &_ts,
const double &_time_tol);
FrameBasePtr setPriorFix(const VectorComposite &_state,
......
......@@ -1082,11 +1082,11 @@ FrameBasePtr Problem::applyPriorOptions(const TimeStamp& _ts)
}
FrameBasePtr Problem::setPriorFactor(const VectorComposite &_state,
const VectorComposite &_cov,
const VectorComposite &_sigma,
const TimeStamp &_ts,
const double &_time_tol)
{
setPriorOptions("factor", _time_tol, _state, _cov);
setPriorOptions("factor", _time_tol, _state, _sigma);
return applyPriorOptions(_ts);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment