https://github.com/geodynamics/citcoms
Raw File
Tip revision: 60c9538a11a48ae533f752115f5456df3c302303 authored by Eh Tan on 16 January 2012, 21:25:08 UTC
Merged r18932, r19073, and r19192 from trunk to v3.1 branch
Tip revision: 60c9538
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