# The Multivac — Evaluation Report

**Evaluation ID:** EVAL-20260402-134400
**Date:** Apr 02, 2026
**Category:** code
**Question ID:** CODE-017

---

## Question

This Go code processes orders concurrently but occasionally produces incorrect totals. Find and fix all concurrency issues.

```go
package main

import (
    "fmt"
    "sync"
)

type OrderProcessor struct {
    totalRevenue float64
    orderCount   int
    errors       []string
}

func (op *OrderProcessor) ProcessOrder(amount float64, wg *sync.WaitGroup) {
    defer wg.Done()
    
    if amount <= 0 {
        op.errors = append(op.errors, fmt.Sprintf("invalid amount: %.2f", amount))
        return
    }
    
    op.totalRevenue += amount
    op.orderCount++
}

func main() {
    op := &OrderProcessor{}
    var wg sync.WaitGroup
    
    orders := []float64{99.99, 149.50, -10.00, 299.99, 49.99, 0, 199.99}
    
    for _, amount := range orders {
        wg.Add(1)
        go op.ProcessOrder(amount, &wg)
    }
    
    wg.Wait()
    fmt.Printf("Total: $%.2f from %d orders\n", op.totalRevenue, op.orderCount)
}
```

---

## Winner

**GPT-OSS-120B** (OpenAI)
- Winner Score: 9.75
- Matrix Average: 9.02
- Total Judgments: 89

---

## Rankings

| Rank | Model | Provider | Avg Score | Judgments |
|------|-------|----------|-----------|----------|
| 1 | GPT-OSS-120B | OpenAI | 9.75 | 9 |
| 2 | GPT-5.4 | openrouter | 9.49 | 9 |
| 3 | Claude Opus 4.6 | openrouter | 9.46 | 8 |
| 4 | Claude Sonnet 4.6 | openrouter | 9.40 | 9 |
| 5 | Grok 4.20 | openrouter | 9.12 | 9 |
| 6 | MiMo-V2-Flash | Xiaomi | 9.02 | 9 |
| 7 | MiniMax M2.5 | openrouter | 8.96 | 9 |
| 8 | Gemini 3 Flash Preview | Google | 8.91 | 9 |
| 9 | DeepSeek V4 | openrouter | 8.79 | 9 |
| 10 | Gemini 3.1 Pro | openrouter | 7.29 | 9 |

---

## 10×10 Judgment Matrix

Rows = Judge, Columns = Respondent. Self-judgments excluded (—).

| Judge ↓ / Resp → | MiMo-V2-Flash | GPT-5.4 | Claude Opus | Gemini 3.1 Pro | Claude Sonnet | Gemini 3 | Grok 4.20 | DeepSeek V4 | GPT-OSS-120B | MiniMax M2.5 |
|---|---|---|---|---|---|---|---|---|---|---|
| MiMo-V2-Flash | — | 9.0 | 9.6 | 7.6 | 9.3 | 8.6 | 8.8 | 8.6 | 10.0 | 9.0 |
| GPT-5.4 | 8.8 | — | 9.0 | 4.0 | 9.0 | 8.4 | 8.6 | 8.6 | 9.8 | 8.4 |
| Claude Opus | 9.4 | 9.8 | — | 8.6 | 9.8 | 9.0 | 9.2 | 8.6 | 9.8 | 8.6 |
| Gemini 3.1 Pro | 9.8 | 9.8 | 10.0 | — | 9.6 | 9.8 | 9.6 | 9.8 | 10.0 | 9.4 |
| Claude Sonnet | 8.8 | 9.8 | 9.8 | 7.8 | — | 8.6 | 8.8 | 8.6 | 9.6 | 8.4 |
| Gemini 3 | 9.8 | 10.0 | 10.0 | 9.6 | 10.0 | — | 10.0 | 9.8 | 10.0 | 9.8 |
| Grok 4.20 | 8.8 | 8.8 | 8.8 | 6.2 | 9.0 | 8.6 | — | 8.6 | 9.0 | 8.6 |
| DeepSeek V4 | 9.2 | 9.6 | · | 9.1 | 9.6 | 9.3 | 9.6 | — | 9.8 | 9.6 |
| GPT-OSS-120B | 8.6 | 8.8 | 9.3 | 6.6 | 9.1 | 9.1 | 8.8 | 8.6 | — | 8.8 |
| MiniMax M2.5 | 8.0 | 9.8 | 9.3 | 6.1 | 9.3 | 8.8 | 8.8 | 8.0 | 9.8 | — |

---

## Methodology

- **10×10 Blind Peer Matrix:** All models answer the same question, then all models judge all responses.
- **5 Criteria:** Correctness, completeness, clarity, depth, usefulness (each scored 1–10).
- **Self-judgments excluded:** Models do not judge their own responses.
- **Weighted Score:** Composite of all 5 criteria.

---

## Citation

The Multivac (2026). Blind Peer Evaluation: CODE-017. app.themultivac.com

## License

Open data. Free to use, share, and build upon. Please cite The Multivac when using this data.

Download raw JSON: https://app.themultivac.com/api/evaluations/EVAL-20260402-134400/results
Full dataset: https://app.themultivac.com/dashboard/export
