I have to make multiple files in cadabra which has same assumption in all the files. Is there anyway in which i can stote these assumptions in a file and read that file in the multiple files i need.
For eg I have to make the following set of commands in 3 files
{u, r, z1 , z2, z3 , z4}::Coordinate;
{a , b , c , d , e , f , g , h , i , j , k , l , m , n#}::Indices(values={z1 , z2 , z3 , z4}, position=fixed);
\partial{#}::PartialDerivative;
q{#}::Depends( a , b , c , d , e , f , g , h , i , j , k , l , m , n#,\partial{#});
q_{a b}::Metric;
q^{a b}::InverseMetric;
q^{a}_{b}::KroneckerDelta;
Can you please help me how to call these set of assumption in multiple files so that if i change just the master file , the other files will be automatically updated.