Exemple #1
0
 /// <summary>
 ///   Executes the <paramref name="visitor" /> for this formula.
 /// </summary>
 /// <param name="visitor">The visitor that should be executed.</param>
 internal abstract void Visit(FormulaVisitor visitor);
Exemple #2
0
 /// <summary>
 ///   Executes the <paramref name="visitor" /> for this formula.
 /// </summary>
 /// <param name="visitor">The visitor that should be executed.</param>
 internal override void Visit(FormulaVisitor visitor)
 {
     visitor.VisitRewardFormula(this);
 }
Exemple #3
0
 /// <summary>
 ///   Executes the <paramref name="visitor" /> for this formula.
 /// </summary>
 /// <param name="visitor">The visitor that should be executed.</param>
 internal override void Visit(FormulaVisitor visitor)
 {
     visitor.VisitUnaryFormula(this);
 }