From 6a3cdf400570f21f654666d8022168a0542731ce Mon Sep 17 00:00:00 2001
From: Marcin Kirsz <mkirsz@ed.ac.uk>
Date: Tue, 8 Oct 2024 15:36:34 +0100
Subject: [PATCH] fix for solver when N > M

---
 trainer.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/trainer.h b/trainer.h
index 9070c71..24988c4 100644
--- a/trainer.h
+++ b/trainer.h
@@ -215,7 +215,7 @@ class MPI_Trainer: public Trainer {
     void solve() {
 
       if (PHI_cols>PHI_rows) {
-          throw std::runtime_error("MPI solver requires M > N")
+          throw std::runtime_error("MPI solver requires M > N");
       }
 
       // Descriptors for scalaPACK
-- 
GitLab