Return a list of existing paths composed by all combinations of items from the arguments.
(self, *args)
| 1074 | return None |
| 1075 | |
| 1076 | def combine_paths(self, *args): |
| 1077 | """Return a list of existing paths composed by all combinations |
| 1078 | of items from the arguments. |
| 1079 | """ |
| 1080 | return combine_paths(*args) |
| 1081 | |
| 1082 | |
| 1083 | class fft_opt_info(system_info): |
no test coverage detected