Skip to content

Commit

Permalink
Bugfix: decrease indices of up- and down-type mass matrics on r.h.s.
Browse files Browse the repository at this point in the history
of constraints.  In this way, the user can write constraints of the
form

LowScaleInput = {
    {Yu[1,1], topDRbar[1,1] / (-Sqrt[2] v)},
    {Yu[2,2], topDRbar[2,2] / (-Sqrt[2] v)},
    {Yu[3,3], topDRbar[3,3] / (-Sqrt[2] v)},
    {Yd[1,1], bottomDRbar[1,1] / (Sqrt[2] v)},
    {Yd[2,2], bottomDRbar[2,2] / (Sqrt[2] v)},
    {Yd[3,3], bottomDRbar[3,3] / (Sqrt[2] v)},
    {Ye, Automatic}
};
  • Loading branch information
Alexander Voigt authored and Alexander Voigt committed Jan 25, 2016
1 parent a62f68a commit c30bb8f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion meta/FlexibleSUSY.m
Original file line number Diff line number Diff line change
Expand Up @@ -1679,7 +1679,12 @@ corresponding tadpole is real or imaginary (only in models with CP
allParameters = ((#[[1]])& /@ Join[Join @@ susyBetaFunctions, Join @@ susyBreakingBetaFunctions]) /.
a_[Susyno`LieGroups`i1] :> a /.
a_[Susyno`LieGroups`i1,SARAH`i2] :> a;
allIndexReplacementRules = Parameters`CreateIndexReplacementRules[allParameters];
allIndexReplacementRules = Join[
Parameters`CreateIndexReplacementRules[allParameters],
{Global`topDRbar[i_,j_] :> Global`topDRbar[i-1,j-1],
Global`bottomDRbar[i_,j_] :> Global`bottomDRbar[i-1,j-1],
Global`electronDRbar[i_,j_] :> Global`electronDRbar[i-1,j-1]}
];
Parameters`SetModelParameters[allParameters];

(* collect all phases from SARAH *)
Expand Down

0 comments on commit c30bb8f

Please sign in to comment.