コード例 #1
0
 def execute(self):
     self.cost = _landbos.siteCompoundCost(self.accessRoadEntrances,
                                           self.constructionTime,
                                           self.farmSize)
コード例 #2
0
ファイル: landbos.py プロジェクト: gtqite/ssc
 def execute(self):
     self.cost = _landbos.siteCompoundCost(self.accessRoadEntrances,
         self.constructionTime, self.farmSize)
コード例 #3
0
ファイル: test_land_bosse.py プロジェクト: pvyield/ssc
    def test_siteCompound(self):

        cost = _landbos.siteCompoundCost(self.accessRoadEntrances, self.constructionTime,
            self.farmSize)
        self.assertAlmostEqual(901575, cost, delta=0.5)