inkhaven 1.5.5

Inkhaven — TUI literary work editor for Typst books
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
//! RESRCH-3 (R3-C, brought forward) — `calc.*` Bund words: physical constants
//! and unit-conversion words that turn the research assistant's `/calc` into a
//! useful, deterministic calculator. Pure values + arithmetic — no store, no
//! network, no AI; the computation is its own proof.
//!
//! Constants push an SI-base value (metres, seconds, m/s …); conversions pop a
//! number and push the converted value. Each is registered as `calc.<name>` with
//! a best-effort short alias `<name>` (collisions with builtins simply keep the
//! `calc.`-prefixed form).

use std::cell::RefCell;
use std::collections::HashMap;

use anyhow::{Result, anyhow};
use easy_error::Error as BundError;
use rust_dynamic::value::Value;
use rust_multistackvm::multistackvm::VM;
use serde_json::Value as Json;

use super::helpers::{pull, push};

/// A constant word: push a fixed `f64`.
macro_rules! kpush {
    ($fn:ident, $v:expr) => {
        fn $fn(vm: &mut VM) -> std::result::Result<&mut VM, BundError> {
            push(vm, Value::from_float($v));
            Ok(vm)
        }
    };
}

/// Coerce a popped value to `f64`, accepting both float and integer literals
/// (a bare `100` parses as an integer, not a float).
fn as_f64(v: &Value) -> std::result::Result<f64, BundError> {
    v.cast_float()
        .or_else(|_| v.cast_int().map(|i| i as f64))
        .map_err(|e| easy_error::err_msg(format!("calc: expected a number ({e})")))
}

/// Pop one number off the stack, coercing int→float (R4-A/B helper).
fn pop_f(vm: &mut VM, tag: &str) -> std::result::Result<f64, BundError> {
    let v = pull(vm, tag).map_err(|e| easy_error::err_msg(e.to_string()))?;
    as_f64(&v)
}

/// A conversion word: pop a number, push `f(x)`.
macro_rules! kconv {
    ($fn:ident, $f:expr) => {
        fn $fn(vm: &mut VM) -> std::result::Result<&mut VM, BundError> {
            let v = pull(vm, "calc").map_err(|e| easy_error::err_msg(e.to_string()))?;
            let x = as_f64(&v)?;
            let f: fn(f64) -> f64 = $f;
            push(vm, Value::from_float(f(x)));
            Ok(vm)
        }
    };
}

/// A binary word: pop `b` then `a` (so `( a b -- y )`), push `f(a, b)`.
macro_rules! kbin {
    ($fn:ident, $tag:literal, $f:expr) => {
        fn $fn(vm: &mut VM) -> std::result::Result<&mut VM, BundError> {
            let b = pop_f(vm, $tag)?;
            let a = pop_f(vm, $tag)?;
            let f: fn(f64, f64) -> f64 = $f;
            push(vm, Value::from_float(f(a, b)));
            Ok(vm)
        }
    };
}

// ── constants (SI base: metres, seconds, m/s) ───────────────────────────────
kpush!(k_pi, std::f64::consts::PI);
kpush!(k_tau, std::f64::consts::TAU);
kpush!(k_e, std::f64::consts::E);
kpush!(k_c, 299_792_458.0); // speed of light, m/s
kpush!(k_grav, 6.674_30e-11); // gravitational constant G
kpush!(k_gee, 9.806_65); // standard gravity g0, m/s²
kpush!(k_au, 1.495_978_707e11); // astronomical unit, m
kpush!(k_ly, 9.460_730_472_580_8e15); // light-year, m
kpush!(k_pc, 3.085_677_581_491_367e16); // parsec, m
kpush!(k_year, 31_557_600.0); // Julian year, s (365.25 d)
kpush!(k_day, 86_400.0);
kpush!(k_hour, 3_600.0);
kpush!(k_minute, 60.0);

// ── conversions ─────────────────────────────────────────────────────────────
kconv!(c_km2mi, |x| x * 0.621_371_192);
kconv!(c_mi2km, |x| x * 1.609_344);
kconv!(c_m2ft, |x| x * 3.280_839_895);
kconv!(c_ft2m, |x| x * 0.304_8);
kconv!(c_m2mi, |x| x * 0.000_621_371_192);
kconv!(c_mi2m, |x| x * 1609.344);
kconv!(c_c2f, |x| x * 9.0 / 5.0 + 32.0);
kconv!(c_f2c, |x| (x - 32.0) * 5.0 / 9.0);
kconv!(c_c2k, |x| x + 273.15);
kconv!(c_k2c, |x| x - 273.15);
kconv!(c_kg2lb, |x| x * 2.204_622_621_8);
kconv!(c_lb2kg, |x| x * 0.453_592_37);
kconv!(c_kmh2mph, |x| x * 0.621_371_192);
kconv!(c_mph2kmh, |x| x * 1.609_344);
kconv!(c_au2km, |x| x * 1.495_978_707e8);
kconv!(c_km2au, |x| x / 1.495_978_707e8);
kconv!(c_ly2km, |x| x * 9.460_730_472_580_8e12);
kconv!(c_km2ly, |x| x / 9.460_730_472_580_8e12);
kconv!(c_ly2au, |x| x * 63_241.077);
kconv!(c_au2ly, |x| x / 63_241.077);
kconv!(c_pc2ly, |x| x * 3.261_563_777);
kconv!(c_ly2pc, |x| x / 3.261_563_777);
kconv!(c_deg2rad, |x| x * std::f64::consts::PI / 180.0);
kconv!(c_rad2deg, |x| x * 180.0 / std::f64::consts::PI);

// ── scientific math substrate (R4-A) ─────────────────────────────────────────
// Registered under `calc.<name>` (short alias best-effort, like the conversions),
// so the `calc.`-prefixed form never collides with bundcore's own arithmetic.
kconv!(m_sqrt, |x| x.sqrt());
kconv!(m_cbrt, |x| x.cbrt());
kconv!(m_exp, |x| x.exp());
kconv!(m_ln, |x| x.ln());
kconv!(m_log10, |x| x.log10());
kconv!(m_log2, |x| x.log2());
kconv!(m_sin, |x| x.sin());
kconv!(m_cos, |x| x.cos());
kconv!(m_tan, |x| x.tan());
kconv!(m_asin, |x| x.asin());
kconv!(m_acos, |x| x.acos());
kconv!(m_atan, |x| x.atan());
kconv!(m_abs, |x| x.abs());
kconv!(m_floor, |x| x.floor());
kconv!(m_ceil, |x| x.ceil());
kconv!(m_round, |x| x.round());
kbin!(m_pow, "calc.pow", |a, b| a.powf(b));
kbin!(m_atan2, "calc.atan2", |a, b| a.atan2(b)); // ( y x -- rad )
kbin!(m_hypot, "calc.hypot", |a, b| a.hypot(b));

// ── astronomy & planetology (R4-B) ───────────────────────────────────────────
// Deterministic formulas in convenient units; they pair with the `calc.world.*`
// readers (e.g. `world.star_mass world.au kepler_period`). Constants reuse the
// `calc.*` set (G = `calc.grav`, g₀ = `calc.gee`).

const SOLAR_CONSTANT_WM2: f64 = 1361.0; // mean insolation at 1 AU, W/m²
const EARTH_ESCAPE_MS: f64 = 11_186.0; // Earth escape velocity, m/s
const STD_GRAVITY: f64 = 9.806_65; // g₀, m/s²

/// `kepler_period` — `( a M -- T )`: Kepler's third law in solar units.
/// a [AU], M [solar masses] → T [years]; `T = √(a³ / M)`.
fn a_kepler_period(vm: &mut VM) -> std::result::Result<&mut VM, BundError> {
    let m = pop_f(vm, "kepler_period")?;
    let a = pop_f(vm, "kepler_period")?;
    if m <= 0.0 {
        return Err(easy_error::err_msg("kepler_period: mass must be > 0"));
    }
    push(vm, Value::from_float((a.powi(3) / m).sqrt()));
    Ok(vm)
}

/// `surface_gravity` — `( M R -- g )`: M [Earth masses], R [Earth radii] →
/// g [m/s²]; `g = (M / R²) · g₀`.
fn a_surface_gravity(vm: &mut VM) -> std::result::Result<&mut VM, BundError> {
    let r = pop_f(vm, "surface_gravity")?;
    let m = pop_f(vm, "surface_gravity")?;
    if r == 0.0 {
        return Err(easy_error::err_msg("surface_gravity: radius must be ≠ 0"));
    }
    push(vm, Value::from_float((m / (r * r)) * STD_GRAVITY));
    Ok(vm)
}

/// `escape_velocity` — `( M R -- v )`: M [Earth masses], R [Earth radii] →
/// v [m/s]; `v = v⊕·√(M / R)`.
fn a_escape_velocity(vm: &mut VM) -> std::result::Result<&mut VM, BundError> {
    let r = pop_f(vm, "escape_velocity")?;
    let m = pop_f(vm, "escape_velocity")?;
    if r <= 0.0 {
        return Err(easy_error::err_msg("escape_velocity: radius must be > 0"));
    }
    push(vm, Value::from_float(EARTH_ESCAPE_MS * (m / r).sqrt()));
    Ok(vm)
}

/// `insolation` — `( L d -- S )`: L [solar luminosities], d [AU] → S [W/m²];
/// inverse-square, `S = (L / d²) · 1361`.
fn a_insolation(vm: &mut VM) -> std::result::Result<&mut VM, BundError> {
    let d = pop_f(vm, "insolation")?;
    let l = pop_f(vm, "insolation")?;
    if d == 0.0 {
        return Err(easy_error::err_msg("insolation: distance must be ≠ 0"));
    }
    push(vm, Value::from_float((l / (d * d)) * SOLAR_CONSTANT_WM2));
    Ok(vm)
}

/// `synodic_period` — `( T1 T2 -- Tsyn )`: `1/Tsyn = |1/T1 − 1/T2|` (same time unit).
fn a_synodic_period(vm: &mut VM) -> std::result::Result<&mut VM, BundError> {
    let t2 = pop_f(vm, "synodic_period")?;
    let t1 = pop_f(vm, "synodic_period")?;
    if t1 == 0.0 || t2 == 0.0 {
        return Err(easy_error::err_msg("synodic_period: periods must be ≠ 0"));
    }
    let diff = (1.0 / t1 - 1.0 / t2).abs();
    if diff == 0.0 {
        return Err(easy_error::err_msg("synodic_period: equal periods (no synodic cycle)"));
    }
    push(vm, Value::from_float(1.0 / diff));
    Ok(vm)
}

/// `angular_size` — `( size dist -- θ )`: `θ = 2·atan(size / (2·dist))` [rad].
fn a_angular_size(vm: &mut VM) -> std::result::Result<&mut VM, BundError> {
    let dist = pop_f(vm, "angular_size")?;
    let size = pop_f(vm, "angular_size")?;
    if dist == 0.0 {
        return Err(easy_error::err_msg("angular_size: distance must be ≠ 0"));
    }
    push(vm, Value::from_float(2.0 * (size / (2.0 * dist)).atan()));
    Ok(vm)
}

/// `hill_sphere` — `( a e m M -- rH )`: `rH ≈ a·(1−e)·∛(m / (3M))`. a [any length],
/// m & M [same mass unit] → rH [same length as a].
fn a_hill_sphere(vm: &mut VM) -> std::result::Result<&mut VM, BundError> {
    let big_m = pop_f(vm, "hill_sphere")?;
    let m = pop_f(vm, "hill_sphere")?;
    let e = pop_f(vm, "hill_sphere")?;
    let a = pop_f(vm, "hill_sphere")?;
    if big_m <= 0.0 {
        return Err(easy_error::err_msg("hill_sphere: primary mass must be > 0"));
    }
    push(vm, Value::from_float(a * (1.0 - e) * (m / (3.0 * big_m)).cbrt()));
    Ok(vm)
}

/// `roche_limit` — `( R rhoM rhom -- d )`: fluid `d = 2.44·R·∛(ρM / ρm)`.
/// R [any length] → d [same]; densities in any shared unit.
fn a_roche_limit(vm: &mut VM) -> std::result::Result<&mut VM, BundError> {
    let rho_m = pop_f(vm, "roche_limit")?;
    let rho_big = pop_f(vm, "roche_limit")?;
    let r = pop_f(vm, "roche_limit")?;
    if rho_m <= 0.0 {
        return Err(easy_error::err_msg("roche_limit: satellite density must be > 0"));
    }
    push(vm, Value::from_float(2.44 * r * (rho_big / rho_m).cbrt()));
    Ok(vm)
}

/// `tidal_accel` — `( M r d -- a )`: SI tidal acceleration `a = 2·G·M·r / d³`.
/// M [kg], r & d [m] → a [m/s²].
fn a_tidal_accel(vm: &mut VM) -> std::result::Result<&mut VM, BundError> {
    let d = pop_f(vm, "tidal_accel")?;
    let r = pop_f(vm, "tidal_accel")?;
    let m = pop_f(vm, "tidal_accel")?;
    if d == 0.0 {
        return Err(easy_error::err_msg("tidal_accel: distance must be ≠ 0"));
    }
    const G: f64 = 6.674_30e-11;
    push(vm, Value::from_float(2.0 * G * m * r / d.powi(3)));
    Ok(vm)
}

// ── World-book readers (R4-D) ────────────────────────────────────────────────
//
// `calc.world.*` pull this project's own World-book facts into `/calc`. Read-only
// over the materialized World book via `crate::world::calc_read`; a path that
// doesn't resolve pushes NODATA (never a fabricated value). Each read is recorded
// (path + rendered value) so `/calc` can echo the source and record `world:<path>`
// provenance on a derived `/fact`.

thread_local! {
    static WORLD_READS: RefCell<Vec<(String, String)>> = const { RefCell::new(Vec::new()) };
}

fn record_world_read(path: &str, rendered: &str) {
    WORLD_READS.with(|r| r.borrow_mut().push((path.to_string(), rendered.to_string())));
}

/// Drain the World-fact paths read since the last call (clears the buffer).
pub(crate) fn take_world_reads() -> Vec<(String, String)> {
    WORLD_READS.with(|r| std::mem::take(&mut *r.borrow_mut()))
}

/// The numeric value at a World path, or `None` when absent / non-numeric.
fn world_number(path: &str) -> Option<f64> {
    let store = crate::scripting::active_store()?;
    crate::world::calc_read::lookup(store, path)?.as_f64()
}

/// Resolve `path` to a number and push it (or push NODATA), recording the read.
fn push_world(vm: &mut VM, path: &str) {
    match world_number(path) {
        Some(x) => {
            record_world_read(path, &format_float(x));
            push(vm, Value::from_float(x));
        }
        None => {
            record_world_read(path, "NODATA");
            push(vm, Value::nodata());
        }
    }
}

/// Compact float rendering for the source echo (drops a trailing `.0`).
fn format_float(x: f64) -> String {
    if x.fract() == 0.0 && x.abs() < 1e15 {
        format!("{}", x as i64)
    } else {
        format!("{x}")
    }
}

/// `calc.world.get` — `( path -- float | NODATA )`.
fn world_get(vm: &mut VM) -> std::result::Result<&mut VM, BundError> {
    let path = pull(vm, "calc.world.get")
        .map_err(|e| easy_error::err_msg(e.to_string()))?
        .cast_string()
        .map_err(|e| easy_error::err_msg(format!("calc.world.get: expected a path string ({e})")))?;
    push_world(vm, &path);
    Ok(vm)
}

/// `calc.world.has` — `( path -- bool )`: does the path resolve to anything?
fn world_has(vm: &mut VM) -> std::result::Result<&mut VM, BundError> {
    let path = pull(vm, "calc.world.has")
        .map_err(|e| easy_error::err_msg(e.to_string()))?
        .cast_string()
        .map_err(|e| easy_error::err_msg(format!("calc.world.has: expected a path string ({e})")))?;
    let ok = crate::scripting::active_store()
        .and_then(|s| crate::world::calc_read::lookup(s, &path))
        .is_some();
    push(vm, Value::from_bool(ok));
    Ok(vm)
}

/// `calc.world.dict` — `( chapter -- dict | NODATA )`: a whole layer as a dict.
fn world_dict(vm: &mut VM) -> std::result::Result<&mut VM, BundError> {
    let ch = pull(vm, "calc.world.dict")
        .map_err(|e| easy_error::err_msg(e.to_string()))?
        .cast_string()
        .map_err(|e| easy_error::err_msg(format!("calc.world.dict: expected a chapter ({e})")))?;
    let value = crate::scripting::active_store()
        .and_then(|s| crate::world::calc_read::chapter(s, &ch))
        .map(|j| json_to_value(&j))
        .unwrap_or_else(Value::nodata);
    record_world_read(&ch, "{dict}");
    push(vm, value);
    Ok(vm)
}

/// Recursively convert a JSON value to a Bund `Value`.
fn json_to_value(j: &Json) -> Value {
    match j {
        Json::Null => Value::nodata(),
        Json::Bool(b) => Value::from_bool(*b),
        Json::Number(n) => match n.as_i64() {
            Some(i) => Value::from_int(i),
            None => Value::from_float(n.as_f64().unwrap_or(0.0)),
        },
        Json::String(s) => Value::from_string(s),
        Json::Array(a) => Value::from_list(a.iter().map(json_to_value).collect()),
        Json::Object(o) => {
            let map: HashMap<String, Value> =
                o.iter().map(|(k, v)| (k.clone(), json_to_value(v))).collect();
            Value::from_dict(map)
        }
    }
}

/// A convenience World constant: push the number at a fixed path (or NODATA).
macro_rules! kworld {
    ($fn:ident, $path:expr) => {
        fn $fn(vm: &mut VM) -> std::result::Result<&mut VM, BundError> {
            push_world(vm, $path);
            Ok(vm)
        }
    };
}

// Fixed-path conveniences for the materialized astronomy figures the formula
// words consume most (paths mirror `materialize_astronomy`'s JSON keys).
kworld!(w_year, "Astronomy/year_length_planet_days");
kworld!(w_declared_year, "Astronomy/declared_year_length_days");
kworld!(w_tilt, "Astronomy/axial_tilt_deg");
kworld!(w_star_mass, "Astronomy/stellar_mass_solar");
kworld!(w_orbit_days, "Astronomy/orbital_period_days_earth");
kworld!(w_divergence, "Astronomy/year_length_divergence_pct");

/// `(calc.<name>, fn)` table — the short alias is the suffix after `calc.`.
const WORDS: &[(&str, fn(&mut VM) -> std::result::Result<&mut VM, BundError>)] = &[
    ("calc.pi", k_pi),
    ("calc.tau", k_tau),
    ("calc.e", k_e),
    ("calc.c", k_c),
    ("calc.grav", k_grav),
    ("calc.gee", k_gee),
    ("calc.au", k_au),
    ("calc.ly", k_ly),
    ("calc.pc", k_pc),
    ("calc.year", k_year),
    ("calc.day", k_day),
    ("calc.hour", k_hour),
    ("calc.minute", k_minute),
    ("calc.km2mi", c_km2mi),
    ("calc.mi2km", c_mi2km),
    ("calc.m2ft", c_m2ft),
    ("calc.ft2m", c_ft2m),
    ("calc.m2mi", c_m2mi),
    ("calc.mi2m", c_mi2m),
    ("calc.c2f", c_c2f),
    ("calc.f2c", c_f2c),
    ("calc.c2k", c_c2k),
    ("calc.k2c", c_k2c),
    ("calc.kg2lb", c_kg2lb),
    ("calc.lb2kg", c_lb2kg),
    ("calc.kmh2mph", c_kmh2mph),
    ("calc.mph2kmh", c_mph2kmh),
    ("calc.au2km", c_au2km),
    ("calc.km2au", c_km2au),
    ("calc.ly2km", c_ly2km),
    ("calc.km2ly", c_km2ly),
    ("calc.ly2au", c_ly2au),
    ("calc.au2ly", c_au2ly),
    ("calc.pc2ly", c_pc2ly),
    ("calc.ly2pc", c_ly2pc),
    ("calc.deg2rad", c_deg2rad),
    ("calc.rad2deg", c_rad2deg),
    // Scientific math substrate (R4-A).
    ("calc.sqrt", m_sqrt),
    ("calc.cbrt", m_cbrt),
    ("calc.exp", m_exp),
    ("calc.ln", m_ln),
    ("calc.log10", m_log10),
    ("calc.log2", m_log2),
    ("calc.sin", m_sin),
    ("calc.cos", m_cos),
    ("calc.tan", m_tan),
    ("calc.asin", m_asin),
    ("calc.acos", m_acos),
    ("calc.atan", m_atan),
    ("calc.abs", m_abs),
    ("calc.floor", m_floor),
    ("calc.ceil", m_ceil),
    ("calc.round", m_round),
    ("calc.pow", m_pow),
    ("calc.atan2", m_atan2),
    ("calc.hypot", m_hypot),
    // Astronomy & planetology (R4-B).
    ("calc.kepler_period", a_kepler_period),
    ("calc.surface_gravity", a_surface_gravity),
    ("calc.escape_velocity", a_escape_velocity),
    ("calc.insolation", a_insolation),
    ("calc.synodic_period", a_synodic_period),
    ("calc.angular_size", a_angular_size),
    ("calc.hill_sphere", a_hill_sphere),
    ("calc.roche_limit", a_roche_limit),
    ("calc.tidal_accel", a_tidal_accel),
    // World-book readers (R4-D).
    ("calc.world.get", world_get),
    ("calc.world.has", world_has),
    ("calc.world.dict", world_dict),
    ("calc.world.year", w_year),
    ("calc.world.declared_year", w_declared_year),
    ("calc.world.tilt", w_tilt),
    ("calc.world.star_mass", w_star_mass),
    ("calc.world.orbit_days", w_orbit_days),
    ("calc.world.divergence", w_divergence),
];

pub fn register(vm: &mut VM) -> Result<()> {
    for (name, f) in WORDS {
        vm.register_inline(name.to_string(), *f).map_err(|e| anyhow!("register {name}: {e}"))?;
    }
    // Best-effort short aliases (`calc.mi2km` → `mi2km`); collisions are ignored,
    // leaving the namespaced form usable.
    for (name, _) in WORDS {
        if let Some(short) = name.strip_prefix("calc.") {
            let _ = vm.register_alias(short.to_string(), name.to_string());
        }
    }
    Ok(())
}

#[cfg(test)]
mod tests {
    use crate::scripting;

    fn top_float(code: &str) -> f64 {
        let out = scripting::eval(code).expect("eval");
        out.top.expect("a result").cast_float().expect("float")
    }

    #[test]
    fn conversions_via_short_alias() {
        assert!((top_float("100 mi2km") - 160.9344).abs() < 1e-6);
        assert!((top_float("0 c2f") - 32.0).abs() < 1e-9);
        assert!((top_float("100 c2f") - 212.0).abs() < 1e-9);
    }

    #[test]
    fn constants_and_namespaced_form() {
        assert!((top_float("calc.pi") - std::f64::consts::PI).abs() < 1e-12);
        // light-year in metres
        assert!((top_float("calc.ly") - 9.460_730_472_580_8e15).abs() < 1.0);
    }

    #[test]
    fn math_substrate() {
        assert!((top_float("9 calc.sqrt") - 3.0).abs() < 1e-9);
        assert!((top_float("2 10 calc.pow") - 1024.0).abs() < 1e-9);
        assert!((top_float("3 4 calc.hypot") - 5.0).abs() < 1e-9);
    }

    #[test]
    fn astronomy_known_values() {
        // Kepler: a=4 AU, M=1 M☉ → T = √(64) = 8 yr.
        assert!((top_float("4 1 calc.kepler_period") - 8.0).abs() < 1e-9);
        // Earth: M=1, R=1 → g₀ = 9.80665 m/s².
        assert!((top_float("1 1 calc.surface_gravity") - 9.806_65).abs() < 1e-6);
        // Escape: M=1, R=1 → 11186 m/s.
        assert!((top_float("1 1 calc.escape_velocity") - 11_186.0).abs() < 1e-6);
        // Insolation: L=1 L☉, d=2 AU → 1361 / 4 = 340.25 W/m².
        assert!((top_float("1 2 calc.insolation") - 340.25).abs() < 1e-6);
        // Synodic: T1=1, T2=1.5 → 1/(1 − 2/3) = 3.
        assert!((top_float("1 1.5 calc.synodic_period") - 3.0).abs() < 1e-9);
        // Roche (fluid): R=1, ρM=1, ρm=1 → 2.44.
        assert!((top_float("1 1 1 calc.roche_limit") - 2.44).abs() < 1e-9);
    }
}