From cf0d5273f9b5167b11f9955957f1f526074bec8b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Argos=29?=
 <stepan@adjemian.eu>
Date: Thu, 12 Sep 2024 11:59:15 +0200
Subject: [PATCH] Remove powershell script.

---
 run.ps1 | 15 ---------------
 1 file changed, 15 deletions(-)
 delete mode 100644 run.ps1

diff --git a/run.ps1 b/run.ps1
deleted file mode 100644
index 678eec4..0000000
--- a/run.ps1
+++ /dev/null
@@ -1,15 +0,0 @@
-function Run-MatlabBatch {
-    param (
-        [string]$fileName,
-        [int]$modelsValue,
-        [string]$logFile
-    )
-
-    while (-not (Test-Path $fileName)) {
-        matlab -batch "MODELS=$modelsValue; compute_transition;" | Tee-Object -FilePath $logFile -Append
-    }
-}
-
-Run-MatlabBatch -fileName "m10-done.info" -modelsValue 1 -logFile "m10-all.log"
-Run-MatlabBatch -fileName "m20-done.info" -modelsValue 2 -logFile "m20-all.log"
-Run-MatlabBatch -fileName "m30-done.info" -modelsValue 3 -logFile "m30-all.log"
\ No newline at end of file
-- 
GitLab