Browse Source

Fixed some doxygen warnings

(Remaining warnings all appear because of undocumented function
parameters)
tempestpy_adaptions
Lanchid 12 years ago
parent
commit
afce8c9d12
  1. 1
      src/formula/BoundedNaryUntil.h
  2. 2
      src/formula/SteadyStateOperator.h
  3. 2
      src/modelchecker/DtmcPrctlModelChecker.h
  4. 2
      src/models/GraphTransitions.h
  5. 4
      src/parser/DeterministicModelParser.h
  6. 4
      src/parser/NonDeterministicModelParser.h

1
src/formula/BoundedNaryUntil.h

@ -77,7 +77,6 @@ public:
*
* @param left The left formula subtree
* @param right The left formula subtree
* @param bound The maximal number of steps
*/
BoundedNaryUntil(AbstractStateFormula<T>* left, std::vector<std::tuple<AbstractStateFormula<T>*,T,T>>* right) {
this->left = left;

2
src/formula/SteadyStateOperator.h

@ -67,7 +67,7 @@ public:
/*!
* Constructor
*
* @param child The child node
* @param stateFormula The child node
*/
SteadyStateOperator(
typename StateBoundOperator<T>::ComparisonType comparisonRelation, T bound, AbstractStateFormula<T>* stateFormula) :

2
src/modelchecker/DtmcPrctlModelChecker.h

@ -117,7 +117,7 @@ public:
/*!
* Checks the given operator (with no bound) on the DTMC and prints the result
* (probability/rewards) for all initial states.
* @param probabilisticNoBoundFormula The formula to be checked.
* @param noBoundFormula The formula to be checked.
*/
void check(const storm::formula::NoBoundOperator<Type>& noBoundFormula) const {
std::cout << std::endl;

2
src/models/GraphTransitions.h

@ -73,7 +73,7 @@ public:
/*!
* Returns an iterator referring to the element after the successors of
* the given state.
* @param row The state for which to get the iterator.
* @param state The state for which to get the iterator.
* @return An iterator referring to the element after the successors of
* the given state.
*/

4
src/parser/DeterministicModelParser.h

@ -18,10 +18,10 @@ namespace parser {
/*!
* @brief Load label and transition file and return initialized dtmc or ctmc object.
*
* @Note This class creates a new Dtmc or Ctmc object that can
* @note This class creates a new Dtmc or Ctmc object that can
* be accessed via getDtmc() or getCtmc(). However, it will not delete this object!
*
* @Note The labeling representation in the file may use at most as much nodes as are specified in the transition system.
* @note The labeling representation in the file may use at most as much nodes as are specified in the transition system.
*/
class DeterministicModelParser: public storm::parser::Parser {
public:

4
src/parser/NonDeterministicModelParser.h

@ -18,10 +18,10 @@ namespace parser {
/*!
* @brief Load label and transition file and return initialized mdp object
*
* @Note This class creates a new Mdp object that can
* @note This class creates a new Mdp object that can
* be accessed via getMdp(). However, it will not delete this object!
*
* @Note The labeling representation in the file may use at most as much nodes as are specified in the mdp.
* @note The labeling representation in the file may use at most as much nodes as are specified in the mdp.
*/
class NonDeterministicModelParser: public storm::parser::Parser {
public:

Loading…
Cancel
Save