(self, section, key)
| 1653 | notfounderror = LapackSrcNotFoundError |
| 1654 | |
| 1655 | def get_paths(self, section, key): |
| 1656 | pre_dirs = system_info.get_paths(self, section, key) |
| 1657 | dirs = [] |
| 1658 | for d in pre_dirs: |
| 1659 | dirs.extend([d] + self.combine_paths(d, ['LAPACK*/SRC', 'SRC'])) |
| 1660 | return [d for d in dirs if os.path.isdir(d)] |
| 1661 | |
| 1662 | def calc_info(self): |
| 1663 | src_dirs = self.get_src_dirs() |
nothing calls this directly
no test coverage detected