Page MenuHomec4science

generate_indices.sh
No OneTemporary

File Metadata

Created
Tue, Feb 25, 03:14

generate_indices.sh

#!/bin/bash
# Set the upper bounds of the coefficients Tljpmf to be computed (be careful to be consistent with the maximum indices used in cosolver)
# run the command line
#
# bash generate_listindices.sh > indices.in
#
# to generate the list of indices to be computed
for l in {0..5}
do
for j in {0..5}
do
for p in {0..5}
do
mmax=$p
for m in $(seq 0 $mmax)
do
for f in {0..20}
do
echo $l, $j, $p, $m, $f
done
done
done
done
done

Event Timeline