#!/bin/sh

#COMMON OPTIONS
N="2000000000";
M="64";

#OPTIONS FOR TAYLORS
K="1"; 
I="50.0"; 
A="50.0";
R="2.266";
O="~/numerics_data/";   #output directory
T="~/numerics_data/matrix/taylor_2_3";   #name of the file with the input polynomial
Q="0";                  
Inc1="1.0E-4";     
Inc2="1.0005";    
Inc3="1.0E-3";

ssh pws1  ~/Siegel_Numerics/run  -cp ~/Siegel_Numerics/form_grid   -n $N -m $M -i $I -o $O -k $K -q $Q -c $Inc1 -j $Inc2 -y $Inc3 -a $A -t $T -r $R;
