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

cpack: rm outdated comments

parent 2ae79f53
No related branches found
No related tags found
No related merge requests found
......@@ -198,6 +198,7 @@ void ISimulation::runSimulation() {
return;
std::unique_ptr<ParameterPool> param_pool(createParameterTree());
std::cout << "DEBUG #par_combi = " << param_combinations << std::endl;
for (size_t index = 0; index < param_combinations; ++index) {
double weight = m_distribution_handler.setParameterValues(param_pool.get(), index);
runSingleSimulation(batch_start, batch_size, weight);
......@@ -252,6 +253,7 @@ void ISimulation::addParameterDistribution(const std::string& param_name,
}
void ISimulation::addParameterDistribution(const ParameterDistribution& par_distr) {
std::cout << "DEBUG ISimulation::addParameterDistribution" << std::endl;
validateParametrization(par_distr);
m_distribution_handler.addParameterDistribution(par_distr);
}
......
......@@ -24,10 +24,6 @@ set(CPACK_DEBIAN_PACKAGE_PRIORITY optional)
set(CPACK_DEBIAN_PACKAGE_SECTION devel)
set(CPACK_STRIP_FILES TRUE)
#From the BornAgain webpage: set(CPACK_DEBIAN_PACKAGE_DEPENDS "build-essential, git, cmake(>=3.1), libgsl-dev(>=1.15), libboost-all-dev(>=1.48), libfftw3-dev(>=3.3.1), python3, python3-dev, python3-numpy, python3-matplotlib, libtiff5-dev(>=4.0.2), qt5-default(>=5.4), libqt5designercomponents5, qttools5-dev, libqt5svg5-dev")
#Version Specific Dependencies: set(CPACK_DEBIAN_PACKAGE_DEPENDS "libgsl-dev(>=1.15), libboost-program-options${Boost_MAJOR_VERSION}.${Boost_MINOR_VERSION}.${Boost_SUBMINOR_VERSION}, libboost-iostreams${Boost_MAJOR_VERSION}.${Boost_MINOR_VERSION}.${Boost_SUBMINOR_VERSION}, libboost-regex${Boost_MAJOR_VERSION}.${Boost_MINOR_VERSION}.${Boost_SUBMINOR_VERSION}, libfftw3-3(>=3.3.1), python3, python3-numpy, python3-matplotlib, libqt5widgets5(>=5.4), libtiffxx5(>=4.0.2)")
#Version-free dependencies:
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libgsl-dev(>=1.15), libboost-all-dev, libfftw3-3(>=3.3.1), python3, python3-numpy, python3-matplotlib, libqt5widgets5(>=5.4), libtiffxx5(>=4.0.2)")
......
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