public CommTConsistPathFinder(
     MEAPContext meapContext,
     TapeSegContext tapeSegContext,
     LinEquationContext linEquationContext)
     : base(meapContext, tapeSegContext, linEquationContext)
 {
 }
 public LinEquationsSetBuilder(
     MEAPContext meapContext,
     TapeSegContext tapeSegContext,
     LinEquationContext linEquationContext)
     : base(meapContext, tapeSegContext, linEquationContext)
 {
 }
 protected LinEqsSetBuilder(
     MEAPContext meapContext,
     TapeSegContext tapeSegContext,
     LinEquationContext linEquationContext)
     : base(meapContext, tapeSegContext, linEquationContext)
 {
 }
示例#4
0
 public LPTConsistPathFinder(
     MEAPContext meapContext,
     TapeSegContext tapeSegContext,
     LinEquationContext linEquationContext)
     : base(meapContext, tapeSegContext, linEquationContext)
 {
     this.configuration = Core.AppContext.GetConfiguration();
 }
 public LinEquationsContextBase(
     MEAPContext meapContext,
     TapeSegContext tapeSegContext,
     LinEquationContext linEquationContext)
     : base(meapContext, tapeSegContext)
 {
     this.linEquationContext = linEquationContext;
 }
示例#6
0
 public LinEqsSetBuilder GetLinEquationsSetBuilder(
     MEAPContext meapContext,
     TapeSegContext tapeSegContext,
     LinEquationContext linEquationContext)
 {
     return(new LinEquationsSetBuilder(
                meapContext,
                tapeSegContext,
                linEquationContext));
 }