Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion specs/physics/chimera_best_gamma.t27
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ module chimera {

pub fn formula() -> Float {
// P35_new from PDG 2024: GAMMA.pow(PHI) + PI
// GAMMA.pow(PHI) + PI)
base::math::GAMMA.pow(PHI) + base::math::PI
}

test "formula returns correct value" {
let result = formula();
// Verify the result is a finite positive number
assert result > 0.0;
assert result.is_finite();
}
}
Loading