# The Multivac — Evaluation Report

**Evaluation ID:** EVAL-20260315-033810
**Date:** Mar 15, 2026
**Category:** code
**Question ID:** EVAL-20260315-033810

---

## 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

**Qwen 3 8B** (openrouter)
- Winner Score: 9.65
- Matrix Average: 9.35
- Total Judgments: 82

---

## Rankings

| Rank | Model | Provider | Avg Score | Judgments |
|------|-------|----------|-----------|----------|
| 1 | Qwen 3 8B | openrouter | 9.65 | 8 |
| 2 | Llama 4 Scout | openrouter | 9.63 | 8 |
| 3 | Gemma 3 27B | openrouter | 9.63 | 8 |
| 4 | Phi-4 14B | openrouter | 9.56 | 8 |
| 5 | Granite 4.0 Micro | openrouter | 9.43 | 8 |
| 6 | Kimi K2.5 | openrouter | 9.38 | 9 |
| 7 | Mistral Nemo 12B | openrouter | 9.36 | 9 |
| 8 | Devstral Small | openrouter | 9.21 | 8 |
| 9 | Qwen 3 32B | openrouter | 9.06 | 8 |
| 10 | Llama 3.1 8B | openrouter | 8.63 | 8 |

---

## 10×10 Judgment Matrix

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

| Judge ↓ / Resp → | Qwen 3 32B | Kimi K2.5 | Devstral Small | Gemma 3 27B | Llama 4 Scout | Phi-4 14B | Granite 4.0 | Qwen 3 8B | Mistral Nemo | Llama 3.1 8B |
|---|---|---|---|---|---|---|---|---|---|---|
| Qwen 3 32B | — | 9.8 | 9.4 | 10.0 | 9.8 | 10.0 | 10.0 | 10.0 | 9.8 | 5.6 |
| Kimi K2.5 | · | — | · | · | · | · | · | · | 9.0 | · |
| Devstral Small | 9.2 | 10.0 | — | 10.0 | 10.0 | 10.0 | 9.8 | 9.8 | 9.6 | 9.6 |
| Gemma 3 27B | 9.6 | 9.6 | 9.6 | — | 9.8 | 9.6 | 9.6 | 9.6 | 9.4 | 9.6 |
| Llama 4 Scout | 9.4 | 9.6 | 9.4 | 9.6 | — | 9.6 | 9.4 | 9.6 | 9.4 | 9.6 |
| Phi-4 14B | 9.6 | 9.2 | 9.6 | 9.6 | 10.0 | — | 9.6 | 10.0 | 9.6 | 10.0 |
| Granite 4.0 | 8.8 | 8.8 | 8.8 | 9.2 | 8.8 | 8.8 | — | 9.2 | 8.8 | 8.8 |
| Qwen 3 8B | 8.0 | 9.8 | 9.4 | 9.8 | 9.8 | 10.0 | 8.8 | — | 9.4 | 7.4 |
| Mistral Nemo | 8.7 | 8.6 | 8.2 | 9.4 | 9.3 | 9.3 | 8.7 | 9.4 | — | 8.4 |
| Llama 3.1 8B | 9.3 | 9.1 | 9.3 | 9.4 | 9.6 | 9.3 | 9.6 | 9.6 | 9.3 | — |

---

## 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: EVAL-20260315-033810. 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-20260315-033810/results
Full dataset: https://app.themultivac.com/dashboard/export
