| 111 | PYBIND11_OVERRIDE_PURE(double, UniaxialMaterial, getInitialTangent); |
| 112 | } |
| 113 | int commitState() override { |
| 114 | PYBIND11_OVERRIDE_PURE( |
| 115 | int, // Return type |
| 116 | UniaxialMaterial, // Parent class |
| 117 | commitState // Name of function in C++ (must match Python name) |
| 118 | ); |
| 119 | } |
| 120 | int revertToLastCommit() override { |
| 121 | PYBIND11_OVERRIDE_PURE( |
| 122 | int, /* Return type */ |
no outgoing calls
no test coverage detected