using System; using System.Collections.Generic; using System.Text; using System.Collections; using Casper; namespace Casper.Algorithm.VariableOrdering { /// /// An implementation of ascending variable order. /// public class AscendingVarOrder:IVariableOrdering { /// /// Since the variables are stored increasingly, we /// return the number from input without any calculation. /// /// The number in queue. /// Number in queue. public int GetNextVar(int numberInQueue) { return numberInQueue; } } }