Skip to content
Snippets Groups Projects
Commit 9b3e7063 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

rm unused par

parent e1300469
No related branches found
No related tags found
1 merge request!916streamline conversion between GUI and domain
Pipeline #65697 passed
......@@ -30,8 +30,7 @@
namespace {
std::unique_ptr<Powerfield<double>> domainData(const std::string& /*test_name*/,
const ISimulation& direct_simulation)
std::unique_ptr<Powerfield<double>> domainData(const ISimulation& direct_simulation)
{
std::unique_ptr<MultiLayerItem> sampleItem(
GUI::Transform::FromDomain::createMultiLayerItem(*direct_simulation.sample()));
......@@ -54,7 +53,7 @@ std::unique_ptr<Powerfield<double>> domainData(const std::string& /*test_name*/,
bool checkSimulation(const std::string& name, ISimulation& direct_simulation, const double limit)
{
const std::unique_ptr<Powerfield<double>> domain_data = domainData(name, direct_simulation);
const std::unique_ptr<Powerfield<double>> domain_data = domainData(direct_simulation);
const std::unique_ptr<Powerfield<double>> ref_data = direct_simulation.simulate().data();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment