| 959 | } |
| 960 | |
| 961 | bool Simulation::SetModels() |
| 962 | { |
| 963 | ConfigInfo* cfg = m_case->GetConfiguration(); |
| 964 | if (!cfg) |
| 965 | { |
| 966 | m_errors.Add("no valid configuration for this case"); |
| 967 | return false; |
| 968 | } |
| 969 | |
| 970 | m_simlist = cfg->Simulations; |
| 971 | return true; |
| 972 | } |
| 973 | |
| 974 | bool Simulation::InvokeSSCWithHandler(ISimulationHandler* ih, ssc_data_t p_data) |
| 975 | { |
nothing calls this directly
no test coverage detected