Skip to content
Snippets Groups Projects
Commit 91d2e247 authored by Olivier Stasse's avatar Olivier Stasse
Browse files

Add display of intervals duration.

parent 531ae09d
No related branches found
No related tags found
No related merge requests found
......@@ -155,4 +155,19 @@ namespace PatternGeneratorJRL
os << endl;
return os;
}
void AnalyticalMorisawaAbstract::displayDeltaTj(ostream &aos)
{
aos << "AnalyticalMorisawaCompact:";
for(unsigned int li=0;
li < m_DeltaTj.size();
li++)
{
aos << m_DeltaTj[li] ;
if (li < m_DeltaTj.size()-1)
aos << " ";
}
aos << endl;
}
}
......@@ -361,8 +361,11 @@ namespace PatternGeneratorJRL
/*! \brief Verbose level for debugging purposes.*/
unsigned m_VerboseLevel;
/*! @} */
/*! \brief Display the value of m_DeltaTj in ostream aos. */
void displayDeltaTj(ostream &aos);
/*! @} */
public:
/*! \brief Get the absolute reference time of
......
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