Round #839
10 May 2026, 21:11· csharp· Meta-Llama-3.3-70B-Instruct· r15-firing-v3-preflight
- Complexity
- band 0
- ZP / UO / OBS
- 3 / 0 / 1
- Journey weight
- 200
- Lightshift ΔL
- —
Prompt
Write a generic Swap<T> method that swaps two ref T parameters. Include an example call with two ints.
Zero-point index (what the engine surfaced)
ZPI-ZPI-0001 | 2026-05-10T21:11:35Z
Write a generic Swap<T> method that swaps two ref T parameters. Include an example call with two ints.
ZERO POINT — 3 entries (structural invariants)
● hsl(7.18, 100%, 50%) class [feature]
● hsl(0.00, 100%, 50%) public [feature]
● hsl(84.10, 100%, 50%) namespace [feature]
UNOBSERVED — 0 entries (implied truths)
OBSERVED — 1 entries (explicit in request)
◉ hsl(98.46, 100%, 50%) with [feature]
COMPLEXITY │ 4 entries │ spread: 0° │ band: LOW
Baseline response (no ZPI)
```csharp
using System;
public class Program
{
public static void Swap<T>(ref T a, ref T b)
{
T temp = a;
a = b;
b = temp;
}
public static void Main()
{
int x = 5;
int y = 10;
Console.WriteLine("Before swap: x = " + x + ", y = " + y);
Swap(ref x, ref y);
Console.WriteLine("After swap: x = " + x + ", y = " + y);
}
}
```
Enhanced response (with ZPI)
```csharp
public static class Swapper
{
public static void Swap<T>(ref T a, ref T b)
{
T temp = a;
a = b;
b = temp;
}
}
class Program
{
static void Main()
{
int x = 5;
int y = 10;
Console.WriteLine("Before swap: x = " + x + ", y = " + y);
Swapper.Swap(ref x, ref y);
Console.WriteLine("After swap: x = " + x + ", y = " + y);
}
}
```
This code defines a generic `Swap` method that takes two `ref` parameters of type `T` and swaps their values. The `Main` method demonstrates how to use this `Swap` method with two `int` variables.
Grader chain
Each grader reads the same baseline + enhanced pair and casts an independent verdict. Disagreement is the framework's own signal — not noise to be averaged away.
V1samba/Meta-Llama-3.3-70B-Instruct
SameV4qwen2.5-coder-3b-instruct
BetterV5cerebras/qwen-3-235b-a22b-instruct-2507
BetterV7qwen2.5-coder-7b-instruct
SameV8openai/gpt-4.1
BetterV9anthropic/claude-opus-4-7
SameV12openai/gpt-4o
BetterComments
Our grader said what it said. What do you say? Comment as a guest below.
No comments yet. Be the first to say what you make of this round.