Commit a603bb7c authored by Mulas, Giacomo's avatar Mulas, Giacomo
Browse files

put the preprocessor checks for logger entries of different matrix-inversion...

put the preprocessor checks for logger entries of different matrix-inversion options in the correct order
parent 50333841
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -191,10 +191,10 @@ void cluster(const string& config_file, const string& data_file, const string& o
      string tppoan_name = output_path + "/c_TPPOAN";
      tppoan.open(tppoan_name.c_str(), ios::out | ios::binary);
      if (tppoan.is_open()) {
#ifdef USE_LAPACK
	logger->log("INFO: using LAPACK calls.\n", LOG_INFO);
#elif defined USE_MAGMA
#ifdef USE_MAGMA
	logger->log("INFO: using MAGMA calls.\n", LOG_INFO);
#elif defined USE_LAPACK
	logger->log("INFO: using LAPACK calls.\n", LOG_INFO);
#else
	logger->log("INFO: using fall-back lucin() calls.\n", LOG_INFO);
#endif