Skip to content

Commit

Permalink
Fixes for MS compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
akenmorris committed Nov 27, 2023
1 parent 886f8ef commit d841cfa
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 23 deletions.
17 changes: 0 additions & 17 deletions Studio/Analysis/AnalysisTool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -463,23 +463,6 @@ void AnalysisTool::network_analysis_clicked() {
app_->get_py_worker()->run_job(network_analysis_job_);
}

//-----------------------------------------------------------------------------
Eigen::VectorXd AnalysisTool::extract_positions(Eigen::VectorXd& data) {
/*
auto positions = data;
if (pca_shape_plus_scalar_mode()) {
positions = extract_shape_only(data);
} else if (pca_scalar_only_mode()) {
computed_scalars_ = temp_shape_;
if (ui_->pca_predict_shape->isChecked()) {
positions = ShapeScalarJob::predict_shape(session_, QString::fromStdString(feature_map_), computed_scalars_);
} else {
positions = construct_mean_shape();
}
}*/
}

//-----------------------------------------------------------------------------
bool AnalysisTool::compute_stats() {
if (stats_ready_) {
Expand Down
6 changes: 0 additions & 6 deletions Studio/Analysis/AnalysisTool.h
Original file line number Diff line number Diff line change
Expand Up @@ -194,14 +194,9 @@ class AnalysisTool : public QWidget {

void change_pca_analysis_type();

//Eigen::VectorXd get_mean_shape();

//! Compute the mean shape outside of the PCA in case we are using scalars only
Eigen::VectorXd construct_mean_shape();


Eigen::VectorXd extract_positions(Eigen::VectorXd& data);

Q_SIGNALS:

void update_view();
Expand Down Expand Up @@ -238,7 +233,6 @@ class AnalysisTool : public QWidget {

ShapeHandle create_shape_from_points(Particles points);


Preferences& preferences_;

Ui_AnalysisTool* ui_;
Expand Down

0 comments on commit d841cfa

Please sign in to comment.