diff --git a/docs/tutorials/quick_start.rst b/docs/tutorials/quick_start.rst index edcc178726..38e5c6c89b 100644 --- a/docs/tutorials/quick_start.rst +++ b/docs/tutorials/quick_start.rst @@ -35,6 +35,7 @@ For Ubuntu / Debian: ./configure -with-cxx --enable-shared --without-python --without-matlab --without-octave sudo make install sudo ldconfig + cd .. For OSX: :: @@ -43,6 +44,7 @@ For OSX: tar -zxvf nlopt-2.4.2.tar.gz && cd nlopt-2.4.2 ./configure --with-cxx --enable-shared --without-python --without-matlab --without-octave sudo make install + cd .. For more options and troubleshooting, see the :ref:`Compilation tutorial `. @@ -50,6 +52,9 @@ For more options and troubleshooting, see the :ref:`Compilation tutorial = 0 else '' - cpp_params['BAYES_OPT_BOBASE_STATS_ENABLED'] = '' if opt.bayes_opt_bobase_stats_enabled else ' BO_PARAM(bool, stats_enabled, false);\n ' + cpp_params['BAYES_OPT_BOBASE_STATS_DISABLED'] = ' BO_PARAM(bool, stats_enabled, false);\n ' if opt.bayes_opt_bobase_stats_disabled else '' cpp_params['INIT_RANDOMSAMPLING_SAMPLES'] = ' BO_PARAM(int, samples, ' + str(opt.init_randomsampling_samples) + ');\n ' if opt.init_randomsampling_samples and opt.init_randomsampling_samples > 0 else '' cpp_params['STOP_MAXITERATIONS_ITERATIONS'] = ' BO_PARAM(int, iterations, ' + str(opt.stop_maxiterations_iterations) + ');\n ' if opt.stop_maxiterations_iterations and opt.stop_maxiterations_iterations > 0 else ''