예제 #1
0
 def solve_r(self, r):  # @UnusedVariable
     mcdp_dev_warning('Not sure about this')
     algo = InvMult2.ALGO
     options = invmultL_solve_options(F=self.R,
                                      R=self.F,
                                      f=r,
                                      n=self.nl,
                                      algo=algo)
     return self.F.Ls(options)
예제 #2
0
 def solve_r(self, r):
     # we want this to be pessimistic
     mcdp_dev_warning('Not sure about this: is it L or U?')
     algo = InvMult2.ALGO
     options = invmultL_solve_options(F=self.R,
                                      R=self.F,
                                      f=r,
                                      n=self.nu,
                                      algo=algo)
     return self.F.Ls(options)
예제 #3
0
 def solve_r(self, r):  # @UnusedVariable
     mcdp_dev_warning('Not sure about this')
     algo = InvMult2.ALGO
     options = invmultL_solve_options(F=self.R, R=self.F, f=r, n=self.nl, algo=algo)
     return self.F.Ls(options)
예제 #4
0
 def solve_r(self, r):  
     # we want this to be pessimistic
     mcdp_dev_warning('Not sure about this: is it L or U?')
     algo = InvMult2.ALGO
     options = invmultL_solve_options(F=self.R, R=self.F, f=r, n=self.nu, algo=algo)
     return self.F.Ls(options)