CMPL
1 program
Added 2026-02-10T20:05:22Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Coliop Mathematical Programming Language, COIN-OR Mathematical Programming Language
Provenance: commit 8c1c594149 · authored 2026-02-10T21:06:29+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Binary Knapsack Selection Problem
Provenance: commit 8c1c594149 · authored 2026-02-10T21:06:29+01:00 · agent claude-code · model sonnet · WebSearch disabled
parameters:
n := 5;
c[] := [3, 5, 2, 7, 1];
variables:
x[1..n]: binary;
objectives:
profit: c[]^T * x[]-> max;
constraints:
selection: sum{i:=1..n: x[i]} <= 3;