| 15 | |
| 16 | template<> |
| 17 | void BoostDataContainer<Example_nnp_norm>::setup() |
| 18 | { |
| 19 | Example_nnp_norm* e = nullptr; |
| 20 | |
| 21 | examples.push_back(Example_nnp_norm("H2O_RPBE-D3")); |
| 22 | e = &(examples.back()); |
| 23 | e->createdFiles.push_back("evsv.dat"); |
| 24 | e->createdFiles.push_back("input.nn.bak"); |
| 25 | e->createdFiles.push_back("output.data"); |
| 26 | |
| 27 | examples.push_back(Example_nnp_norm("Cu2S_PBE")); |
| 28 | e = &(examples.back()); |
| 29 | e->createdFiles.push_back("evsv.dat"); |
| 30 | e->createdFiles.push_back("input.nn.bak"); |
| 31 | e->createdFiles.push_back("output.data"); |
| 32 | |
| 33 | return; |
| 34 | } |
| 35 | |
| 36 | #endif |
nothing calls this directly
no test coverage detected