Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91298099
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
Sat, Nov 9, 18:55
Size
290 B
Mime Type
text/x-shellscript
Expires
Mon, Nov 11, 18:55 (2 d)
Engine
blob
Format
Raw Data
Handle
22238647
Attached To
rCOSOLVER COSOlver
generate_indices.sh
View Options
#!/bin/bash
# Generate list of indices to be computed
# To execute :
# bash generate_indices.sh > indices.in
#
for p in {0..30}
do
for j in {0..15}
do
mmax=$p
for m in $(seq 0 $mmax)
do
for n in {0..3}
do
echo $p, $j, $m, $n
done
done
done
done
Event Timeline
Log In to Comment