85 static string wlo = R
"EOF(
86current = If[$FrontEnd===Null,$InputFileName,NotebookFileName[]]//DirectoryName;
88SetReductionOptions["IBPReducer"->"FiniteFlow+LiteRed"];
89ID = ToExpression[$ScriptCommandLine[[2]]];
90PropsInts=Get[FileNameJoin[{current,ToString[ID]<>".m"}]];
92AMFlowInfo["Family"] = Symbol["I"<>ToString[ID]];
93AMFlowInfo["Loop"] = <<Loop>>;
94AMFlowInfo["Leg"] = <<Leg>>;
95AMFlowInfo["Conservation"] = { };
96AMFlowInfo["Replacement"] = <<Replacement>>;
97AMFlowInfo["Propagator"] = PropsInts[[1]]/.<<M2M2>>;
98AMFlowInfo["Numeric"] = <<Numeric>>;
99AMFlowInfo["NThread"] = 6;
101integrals = Map[(j[Symbol["I"<>ToString[ID]], Sequence@@#])&, PropsInts[[2]]];
102precision = <<Precision>>;
103epsorder = 2*Length@AMFlowInfo["Loop"]-PropsInts[[3]] + <<Order>>;
104sol = SolveIntegrals[integrals, precision, epsorder];
105Put[sol, FileNameJoin[{current, "sol"<>ToString[ID]<>".m"}]];
129 system((
"mkdir -p "+dir).c_str());
135 cout <<
"Replacing linear propagators ..." << endl;
138 find(res, F(
w1,
w2), pq_fs);
140 for(
auto f : pq_fs) {
141 lst ps = ex_to<lst>(f.op(0));
142 lst ns = ex_to<lst>(f.op(1));
144 for(
int i=0; i<ps.nops(); i++) {
147 if(ps.op(i).has(ip*ip)) {
154 if(!is_a<mul>(pi) || !pi.nops()==2) {
155 cout <<
"prop is NOT the form of a*b" << endl;
161 }
else if(ns.op(i)!=0) {
163 cout <<
"n of qi.pi is NOT -1" << endl;
166 auto pa = pi.op(0), pb = pi.op(1);
169 bool ic = is_complete(ps, sp2x);
170 if(!ic && is_loop(pa)) {
171 ps.let_op(i) = expand(pow(pa,2)).subs(
Replacement);
172 ic = is_complete(ps, sp2x);
174 if(!ic && is_loop(pb)) {
175 ps.let_op(i) = expand(pow(pb,2)).subs(
Replacement);
176 ic = is_complete(ps, sp2x);
179 cout <<
"1st: ic is NOT true!" << endl;
188 }
else if(ns_p.nops()>0) {
189 auto idx =
ex2int(ns_p.op(0));
191 auto pidx = ps.op(idx);
197 ps.let_op(idx) = pab;
198 bool ic = is_complete(ps, sp2x);
199 if(!ic && is_loop(pa)) {
200 ps.let_op(idx) = expand(pow(pa,2)).subs(
Replacement);
201 ic = is_complete(ps, sp2x);
203 if(!ic && is_loop(pb)) {
204 ps.let_op(idx) = expand(pow(pb,2)).subs(
Replacement);
205 ic = is_complete(ps, sp2x);
208 cout <<
"2nd: ic is NOT true!" << endl;
212 auto xps =
subs(ps,sp2x);
213 auto xpidx = pidx.subs(sp2x);
216 cout <<
"xps still has ip" << endl;
217 cout <<
"xps: " << xps << endl;
221 cout <<
"xpidx still has ip" << endl;
222 cout <<
"xpidx: " << xpidx << endl;
227 ex xeq = 0, eq = 0, fres = 0;
229 for(
int ii=0; ii<ps.nops(); ii++) {
231 xeq += yi*xps.op(ii);
234 nn.let_op(ii) = ns.op(ii)-1;
235 fres += yi*F(ps, nn);
239 for(
int ii=0; ii<ps.nops(); ii++) {
241 eqs.append(xeq.coeff(xi)==xpidx.coeff(xi));
243 auto sol = lsolve(eqs,ys);
245 if(sol.nops()<1 || sol.has(x(
w))) {
246 cout <<
"wrong sol: " << sol << endl;
249 auto rem = pidx-eq.subs(sol);
250 fres = fres.subs(sol);
252 fres += rem * F(ps, ns);
258 cout <<
"Failed: chk=" << chk << endl;
260 }
else if(!f.op(0).is_equal(ps)) {
261 pq_f2f[f] = F(ps, ns);
264 cout <<
"Failed: chk=" << chk << endl;
269 cout <<
"Collecting ..." << endl;
272 if(e.match(F(
w1,
w2))) {
273 auto itr = pq_f2f.find(e);
274 if(itr==pq_f2f.end()) {
275 cout <<
"F Not Found" << endl;
279 }
else return e.map(self);
285 find(res, F(
w1,
w2), fs);
286 map<ex,Family,ex_is_less> p2f;
290 auto itr = p2f.find(f.op(0));
291 if(itr == p2f.end()) {
292 itr = p2f.insert({f.op(0), Family(
pn)}).first;
295 itr->second.intg.append(f.op(1));
296 f2f[f] = F(itr->second.pn, f.op(1));
300 if(e.match(F(
w1,
w2))) {
301 auto itr = f2f.find(e);
303 cout <<
"F Not Found" << endl;
307 }
else return e.map(self);
310 cout <<
"Exporting res.txt ..." << endl;
314current = If[$FrontEnd===Null,$InputFileName,NotebookFileName[]]//DirectoryName;
317sols = Flatten@Table[Import[FileNameJoin[{current,"sol"<>ToString[i]<>".m"}]], {i,0,<<NN>>}];
318res = C2M@Import[FileNameJoin[{current, "res.txt"}]];
319res = res/.{F[p_, n_] :> j[Symbol["I"<>ToString[p]], Sequence@@n]} /. sols;
327 int tot = p2f.size(), cur = 0;
330 cout <<
"[ " << cur <<
" / " << tot <<
"] pn = " << kv.second.pn << endl;
331 cout << kv.first << endl;
332 cout << kv.second.intg << endl;
335 lst prop = ex_to<lst>(kv.first);
336 auto & f = kv.second;
337 for(
int i=0; i<prop.nops(); i++) {
340 if(prop.op(i).has(ip*ip)) {
346 cout <<
"Propagators: " << prop.op(i) <<
" @ pos: " << i << endl;
347 cout <<
"Integrals: " << f.intg << endl;
354 auto ns = f.intg.op(idx);
355 ex cc = res.coeff(F(f.pn, ns)).subs(Numeric);
356 cc = cc.subs(d==4-2*ep);
357 auto ldeg = ep_ldegree(cc);
362 for(
auto ldeg : order_vec) {
363 if(order>ldeg) order =
ex2int(ldeg);
366 ex2file(lst{ prop, f.intg, order }, dir+
"/"+to_string(f.pn)+
".m");