def test_archDelete(self): libPath = getLibPath() libScotch = scotch.LibScotch(libraryPath=libPath) self.assertTrue(libScotch.isLoaded()) self.assertTrue(libScotch.createSCOTCHArch()) libScotch.deleteSCOTCHArch() self.assertTrue(libScotch.architecture is None)
def test_stratCreation(self): libPath = getLibPath() libScotch = scotch.LibScotch(libraryPath=libPath) self.assertTrue(libScotch.isLoaded()) self.assertTrue(libScotch.createSCOTCHGraphMapStrategy(''))
def test_archPopulate(self): libPath = getLibPath() libScotch = scotch.LibScotch(libraryPath=libPath) self.assertTrue(libScotch.isLoaded()) self.assertTrue(libScotch.createSCOTCHArch()) self.assertTrue(libScotch.populatePartitionArchitecture(10))
def test_archMethods(self): libPath = getLibPath() libScotch = scotch.LibScotch(libraryPath=libPath) self.assertTrue(libScotch.isLoaded()) self.assertTrue(libScotch.createSCOTCHArch())
def test_loadScotchLibrary(self): libPath = getLibPath() libScotch = scotch.LibScotch(libraryPath=libPath) self.assertTrue(libScotch.isLoaded())