The following interactive plot causes Mathematica 9 to become unresponsive. Could someone please tell me what is wrong with it?
Manipulate[
Module[{tbl1},
tbl1 = Table[
Tooltip[{effS,
B + EQ (P - P pfold) +
pfold (P + V) + (-1 - 2 EQ (-1 + pfold) + pfold) effS}], {effS,
0.05, Min[S, T], 0.01}];
ListLinePlot[{tbl1}, PlotLegends -> {"EV"},
PlotStyle -> {Directive[Orange]}, Mesh -> All,
MeshStyle -> Opacity[0], GridLines -> {Automatic},
AxesLabel -> {"eff stack", "EV"}]], {{B, 180, "Hero bet"}, 0.05, S,
0.01, Appearance -> "Labeled"}, {{V, 400, "Villain bet"}, 0.05, T,
0.01, Appearance -> "Labeled"}, {{S, 1280, "Hero remaining stack"},
0.05, 10000, 0.01,
Appearance -> "Labeled"}, {{T, 870, "Villain remaining stack"},
0.05, 10000, 0.01, Appearance -> "Labeled"}, {{P, 260, "Pot"}, 0.05,
10000, 0.01, Appearance -> "Labeled"}, {{EQ, 0.25, "Hero Equity"},
0, 100, 0.01,
Appearance -> "Labeled"}, {{pfold, 0.5,
"Probability villain folds"}, 0, 1, 0.01, Appearance -> "Labeled"}]
{effS,0.05, Min[S, T], 0.01}
to{effS,0.05, Min[S, T], 10}
seems to work. – user0501 Apr 22 at 20:05