diff --git a/palace/drivers/basesolver.hpp b/palace/drivers/basesolver.hpp index b3d730b26..6bdbc8efd 100644 --- a/palace/drivers/basesolver.hpp +++ b/palace/drivers/basesolver.hpp @@ -44,7 +44,6 @@ class BaseSolver TableWithCSVFile domain_E; public: - DomainsPostPrinter() = default; DomainsPostPrinter(bool do_measurement, bool root, const fs::path &post_dir, const PostOperator &post_op, const std::string &idx_col_name, int n_expected_rows); @@ -62,7 +61,6 @@ class BaseSolver TableWithCSVFile surface_Q; public: - SurfacesPostPrinter() = default; SurfacesPostPrinter(bool do_measurement, bool root, const fs::path &post_dir, const PostOperator &post_op, const std::string &idx_col_name, int n_expected_rows); @@ -87,7 +85,6 @@ class BaseSolver bool has_imag = false; public: - ProbePostPrinter() = default; ProbePostPrinter(bool do_measurement, bool root, const fs::path &post_dir, const PostOperator &post_op, const std::string &idx_col_name, int n_expected_rows); @@ -110,7 +107,6 @@ class BaseSolver TableWithCSVFile error_indicator; public: - ErrorIndicatorPostPrinter() = default; ErrorIndicatorPostPrinter(bool do_measurement, bool root, const fs::path &post_dir); void PrintIndicatorStatistics(const PostOperator &post_op, diff --git a/palace/drivers/drivensolver.hpp b/palace/drivers/drivensolver.hpp index e87c36c3e..3032228e3 100644 --- a/palace/drivers/drivensolver.hpp +++ b/palace/drivers/drivensolver.hpp @@ -40,7 +40,6 @@ class DrivenSolver : public BaseSolver TableWithCSVFile domain_E = {}; public: - DomainsPostPrinter() = default; DomainsPostPrinter(bool do_measurement, bool root, const fs::path &post_dir, const PostOperator &post_op, const PortExcitationHelper &excitation_helper, int n_expected_rows); @@ -57,7 +56,6 @@ class DrivenSolver : public BaseSolver TableWithCSVFile surface_Q = {}; public: - SurfacesPostPrinter() = default; SurfacesPostPrinter(bool do_measurement, bool root, const fs::path &post_dir, const PostOperator &post_op, const PortExcitationHelper &excitation_helper, int n_expected_rows); @@ -81,7 +79,6 @@ class DrivenSolver : public BaseSolver bool has_imag = false; public: - ProbePostPrinter() = default; ProbePostPrinter(bool do_measurement, bool root, const fs::path &post_dir, const PostOperator &post_op, const PortExcitationHelper &excitation_helper, int n_expected_rows); @@ -101,7 +98,6 @@ class DrivenSolver : public BaseSolver TableWithCSVFile surface_I; public: - CurrentsPostPrinter() = default; CurrentsPostPrinter(bool do_measurement, bool root, const fs::path &post_dir, const SurfaceCurrentOperator &surf_j_op, const PortExcitationHelper &excitation_helper, int n_expected_rows); @@ -117,7 +113,6 @@ class DrivenSolver : public BaseSolver TableWithCSVFile port_I; public: - PortsPostPrinter() = default; PortsPostPrinter(bool do_measurement, bool root, const fs::path &post_dir, const LumpedPortOperator &lumped_port_op, const PortExcitationHelper &excitation_helper, int n_expected_rows); @@ -148,7 +143,6 @@ class DrivenSolver : public BaseSolver PortExcitationHelper excitation_helper_; public: - SParametersPostPrinter() = default; SParametersPostPrinter(bool do_measurement, bool root, const fs::path &post_dir, const LumpedPortOperator &lumped_port_op, const WavePortOperator &wave_port_op, diff --git a/palace/drivers/eigensolver.hpp b/palace/drivers/eigensolver.hpp index 81fec562c..1b9843e91 100644 --- a/palace/drivers/eigensolver.hpp +++ b/palace/drivers/eigensolver.hpp @@ -37,7 +37,6 @@ class EigenSolver : public BaseSolver public: int stdout_int_print_width = 0; - EigenPostPrinter() = default; EigenPostPrinter(bool do_measurement, bool root, const fs::path &post_dir, int n_post); void AddMeasurement(int eigen_print_idx, const PostOperator &post_op, double error_bkwd, double error_abs, const IoData &iodata); @@ -51,7 +50,6 @@ class EigenSolver : public BaseSolver TableWithCSVFile port_I; public: - PortsPostPrinter() = default; PortsPostPrinter(bool do_measurement, bool root, const fs::path &post_dir, const LumpedPortOperator &lumped_port_op, int n_expected_rows); void AddMeasurement(int eigen_print_idx, const PostOperator &post_op, @@ -71,7 +69,6 @@ class EigenSolver : public BaseSolver std::vector ports_with_R; public: - EPRPostPrinter() = default; EPRPostPrinter(bool do_measurement, bool root, const fs::path &post_dir, const LumpedPortOperator &lumped_port_op, int n_expected_rows); diff --git a/palace/drivers/transientsolver.hpp b/palace/drivers/transientsolver.hpp index ee28e0c38..c9c6aa830 100644 --- a/palace/drivers/transientsolver.hpp +++ b/palace/drivers/transientsolver.hpp @@ -36,7 +36,6 @@ class TransientSolver : public BaseSolver TableWithCSVFile surface_I; public: - CurrentsPostPrinter() = default; CurrentsPostPrinter(bool do_measurement, bool root, const fs::path &post_dir, const SurfaceCurrentOperator &surf_j_op, int n_expected_rows); void AddMeasurement(double t, double J_coef, const SurfaceCurrentOperator &surf_j_op, @@ -51,7 +50,6 @@ class TransientSolver : public BaseSolver TableWithCSVFile port_I; public: - PortsPostPrinter() = default; PortsPostPrinter(bool do_measurement, bool root, const fs::path &post_dir, const LumpedPortOperator &lumped_port_op, int n_expected_rows); void AddMeasurement(double t, double J_coef, const PostOperator &post_op,