geometric_langlands_cli/
lib.rs1pub mod config;
6pub mod persistence;
7pub mod repl;
8pub mod visualization;
9pub mod commands;
10
11#[derive(Clone, Debug, clap::ValueEnum)]
13pub enum OutputFormat {
14 Pretty,
15 Json,
16 Plain,
17 LaTeX,
18}
19
20#[derive(Clone, Debug, clap::ValueEnum)]
21pub enum VerificationDepth {
22 Quick,
23 Standard,
24 Deep,
25 Exhaustive,
26}
27
28#[derive(Clone, Debug, clap::ValueEnum)]
29pub enum ExportFormat {
30 Json,
31 LaTeX,
32 Mathematica,
33 SageMath,
34 Python,
35 Csv,
36 Binary,
37}