Revision 83b719da30afa31b493ff188ae42125538cb85aa authored by Rajesh Kommu on 23 September 2014, 20:39:47 UTC, committed by Rajesh Kommu on 23 September 2014, 20:39:47 UTC
1 parent f18c4ed
Raw File
MultiC_FullSolver.py
#!/usr/bin/env python


from CoupledFullSolver import CoupledFullSolver


class MultiC_FullSolver(CoupledFullSolver):


    def initialize(self, application):
        self.myPlus2 = application.myPlus2
        self.remotePlus2 = application.remotePlus2

        CoupledFullSolver.initialize(self, application)
        return


# version
__id__ = "$Id$"

# End of file
back to top