Forward function for plugins.
(self, x, plugin_names)
| 243 | return plugin_names |
| 244 | |
| 245 | def forward_plugin(self, x, plugin_names): |
| 246 | """Forward function for plugins.""" |
| 247 | out = x |
| 248 | for name in plugin_names: |
| 249 | out = getattr(self, name)(x) |
| 250 | return out |
| 251 | |
| 252 | @property |
| 253 | def norm1(self): |
no outgoing calls
no test coverage detected