Skip to content

Commit d841cfa

Browse files
committed
Fixes for MS compiler
1 parent 886f8ef commit d841cfa

File tree

2 files changed

+0
-23
lines changed

2 files changed

+0
-23
lines changed

Studio/Analysis/AnalysisTool.cpp

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -463,23 +463,6 @@ void AnalysisTool::network_analysis_clicked() {
463463
app_->get_py_worker()->run_job(network_analysis_job_);
464464
}
465465

466-
//-----------------------------------------------------------------------------
467-
Eigen::VectorXd AnalysisTool::extract_positions(Eigen::VectorXd& data) {
468-
/*
469-
auto positions = data;
470-
471-
if (pca_shape_plus_scalar_mode()) {
472-
positions = extract_shape_only(data);
473-
} else if (pca_scalar_only_mode()) {
474-
computed_scalars_ = temp_shape_;
475-
if (ui_->pca_predict_shape->isChecked()) {
476-
positions = ShapeScalarJob::predict_shape(session_, QString::fromStdString(feature_map_), computed_scalars_);
477-
} else {
478-
positions = construct_mean_shape();
479-
}
480-
}*/
481-
}
482-
483466
//-----------------------------------------------------------------------------
484467
bool AnalysisTool::compute_stats() {
485468
if (stats_ready_) {

Studio/Analysis/AnalysisTool.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -194,14 +194,9 @@ class AnalysisTool : public QWidget {
194194

195195
void change_pca_analysis_type();
196196

197-
//Eigen::VectorXd get_mean_shape();
198-
199197
//! Compute the mean shape outside of the PCA in case we are using scalars only
200198
Eigen::VectorXd construct_mean_shape();
201199

202-
203-
Eigen::VectorXd extract_positions(Eigen::VectorXd& data);
204-
205200
Q_SIGNALS:
206201

207202
void update_view();
@@ -238,7 +233,6 @@ class AnalysisTool : public QWidget {
238233

239234
ShapeHandle create_shape_from_points(Particles points);
240235

241-
242236
Preferences& preferences_;
243237

244238
Ui_AnalysisTool* ui_;

0 commit comments

Comments
 (0)