(self, n_centers, n_types, n, l_max)
| 386 | return d |
| 387 | |
| 388 | def init_internal_array(self, n_centers, n_types, n, l_max): |
| 389 | d = np.zeros( |
| 390 | (n_centers, n_types, n, (l_max + 1) * (l_max + 1)), dtype=np.float64 |
| 391 | ) |
| 392 | return d |
| 393 | |
| 394 | def create( |
| 395 | self, system, centers=None, n_jobs=1, only_physical_cores=False, verbose=False |
nothing calls this directly
no outgoing calls
no test coverage detected