blob: 365198b0ef63d367cd4cdbbb9131dca7d503480e [file] [log] [blame]
avm9996345a8a462022-06-04 12:41:03 +02001#!/bin/sh
2temps="1.5 1.8 2.5 3.5 4.5"
3for temp in $temps; do
4 echo "-----------------------------"
5 echo "Executant per T = $temp"
6 echo "-----------------------------"
7 ./out/mc2 $temp
8
9 echo
10done