| 184 | } |
| 185 | |
| 186 | void Simulation::removeAtom(size_t atomIndex) { |
| 187 | world().removeAtom(atomIndex); |
| 188 | } |
| 189 | |
| 190 | void Simulation::removeAtoms(std::vector<size_t> atomIndices) { |
| 191 | world().removeAtoms(std::move(atomIndices)); |
nothing calls this directly
no outgoing calls
no test coverage detected