Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102877530
generate_indices.sh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Feb 25, 03:14
Size
481 B
Mime Type
text/x-shellscript
Expires
Thu, Feb 27, 03:14 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24447796
Attached To
rCOSOLVER COSOlver
generate_indices.sh
View Options
#!/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
Log In to Comment