Skip to content
Snippets Groups Projects
Unverified Commit e4ce1730 authored by Benjamin Loison's avatar Benjamin Loison
Browse files

Use base 2 logarithmic scale for targets

parent 39d05af4
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,7 @@ def Dissolve(m, k, C, previous_score, previous_ℓ):
else:
CStar[CIndex].level_min -= 1
break
# TODO: add a switch for my interpretation
for μ in range( + 1):
D[μ] = uparrow(CStar, μ)
else:
......
......@@ -42,7 +42,7 @@ for curvesIndex, (axis, color, label, yValues) in enumerate(zip(axes, axesColors
alpha = 1 if curvesIndex != 3 else 0.5
curves += axis.plot(yValues, label = label, color = color, dashes = dashes, alpha = alpha)
targetsAxis.set_yscale('log')
targetsAxis.set_yscale('log', base=2)
axes[2].spines.right.set_position(('axes', 1.1))
axes[2].set_yscale('log')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment