Round 319

Round UUID: 184638df-1bf3-483c-a349-b98383cf94e9

Prompt:

Task: Decide whether the entity is “Effective” or “Ineffective”.
You are given exactly two real‑valued fields per entity:
• FizzIntensity  (in arbitrary units)
• ColourShift    (in arbitrary units)

Apply the following rules STRICTLY IN THE ORDER SHOWN and output only the single word  Effective  or  Ineffective.
(Unless otherwise stated, all numerical bounds are inclusive.)

Rule 0 – Definitely ineffective (too little fizz)
    If FizzIntensity < 25 → Ineffective

Rule 1 – Colour‑shift dominates (over‑fizzled)
    Else, if ColourShift ≥ 0.45 × FizzIntensity → Ineffective

Rule 2 – Very high fizz overrides everything
    Else, if FizzIntensity ≥ 60 → Effective

Rule 3 – Strong fizz with moderate colour shift
    Else, if FizzIntensity ≥ 52  AND  9 ≤ ColourShift ≤ 19 → Effective

Rule 4 – Borderline strong fizz, but only if colour shift is small
    Else, if 48 ≤ FizzIntensity < 52  AND  9 ≤ ColourShift ≤ 12 → Effective

Rule 5 – Moderate fizz with large‑but‑safe colour shift
    Else, if 38 ≤ FizzIntensity < 48  AND  20 ≤ ColourShift ≤ 25 → Effective

Rule 6 – Moderate fizz with medium colour shift
    Else, if 38 ≤ FizzIntensity < 48  AND  12 ≤ ColourShift < 20 → Effective

Rule 7 – Negative colour shift but decent fizz
    Else, if ColourShift < 0  AND  FizzIntensity ≥ 26 → Effective

Default
    Else → Ineffective

Remember: evaluate each rule in sequence; as soon as one condition is satisfied STOP and output its label.  Output nothing but the final word.