Skip to content

Commit 811eed5

Browse files
renamed local variable
1 parent 7579078 commit 811eed5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

gap/LoopIntegrals.gi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1017,7 +1017,7 @@ InstallMethod( DivergenceOfCoefficientsVectorOfLoopDiagram,
10171017
[ IsHomalgMatrix, IsLoopDiagram and HasRelationsOfExternalMomenta and HasPropagators and HasNumerators and HasExtraLorentzInvariants ],
10181018

10191019
function( vec, LD )
1020-
local l, k, jacLD, jacLV, trace, sum, D;
1020+
local l, k, jacLD, jacLV, trace, sum, d;
10211021

10221022
l := Length( LoopMomenta( LD ) );
10231023

@@ -1032,9 +1032,9 @@ InstallMethod( DivergenceOfCoefficientsVectorOfLoopDiagram,
10321032

10331033
sum := Sum( [ 1 .. l ], p -> vec[(p - 1) * (l + k) + p, 1] );
10341034

1035-
D := ( LD!.DimensionSymbol / HomalgRing( sum ) );
1035+
d := ( LD!.DimensionSymbol / HomalgRing( sum ) );
10361036

1037-
return trace + D * sum;
1037+
return trace + d * sum;
10381038

10391039
end );
10401040

0 commit comments

Comments
 (0)