一键导入
ix-game
Game theory — Nash equilibria, Shapley value, auctions, evolutionary dynamics
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Game theory — Nash equilibria, Shapley value, auctions, evolutionary dynamics
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Test model robustness with adversarial attacks and defenses
Multi-armed bandit simulation — epsilon-greedy, UCB1, Thompson sampling
Benchmark and compare ix algorithm performance
Embedded Redis-like cache with TTL, LRU, pub/sub, and RESP protocol
Category theory primitives — monad laws verification, free-forgetful adjunction
Chaos theory analysis — Lyapunov exponents, bifurcation, attractors, fractals
| name | ix-game |
| description | Game theory — Nash equilibria, Shapley value, auctions, evolutionary dynamics |
| disable-model-invocation | true |
Model strategic interactions between rational agents.
When the user needs to analyze competitive/cooperative scenarios, design auctions, compute fair allocations, or model population dynamics.
use ix_game::nash::{BimatrixGame, support_enumeration};
use ix_game::cooperative::{CooperativeGame, shapley_value};
use ix_game::auction::{second_price_auction, english_auction};
use ix_game::evolutionary::{replicator_dynamics, is_ess};
use ix_game::mean_field::{MeanFieldGame, find_equilibrium};
[[3,0],[5,1]] vs [[3,5],[0,1]][[1,-1],[-1,1]] vs [[-1,1],[1,-1]]hawk_dove_matrix(v, c) helper