Skip to content
Merged
Show file tree
Hide file tree
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
236 changes: 236 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions alkahest-core/src/errors/codes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,13 @@ pub const REGISTRY: &[ErrorSpec] = &[
ErrorSpec { code: "E-SUM-001", class: "SumError", cause: Cause::UserInput, remediation: None },
ErrorSpec { code: "E-SUM-002", class: "SumError", cause: Cause::UserInput, remediation: None },
ErrorSpec { code: "E-SUM-003", class: "SumError", cause: Cause::UserInput, remediation: None },
// E-PARAMGB — ParamGroebnerError (M9, Gröbner bases over Q(params))
ErrorSpec { code: "E-PARAMGB-001", class: "ParamGroebnerError", cause: Cause::UserInput, remediation: Some("pass at least one polynomial") },
ErrorSpec { code: "E-PARAMGB-002", class: "ParamGroebnerError", cause: Cause::UserInput, remediation: Some("build every generator against the same variable and parameter lists") },
ErrorSpec { code: "E-PARAMGB-003", class: "ParamGroebnerError", cause: Cause::UserInput, remediation: Some("supply exactly one value per parameter, in the parameter list's order") },
// Not a malfunction: the basis is a *generic* one, and this is it saying so
// at a point where it does not apply, rather than specialising anyway.
ErrorSpec { code: "E-PARAMGB-004", class: "ParamGroebnerError", cause: Cause::Domain, remediation: Some("compute the basis directly over ℚ at that parameter point, or move the vanishing factors into the generators and recompute") },
// E-VALIDATED — ValidatedError
ErrorSpec { code: "E-VALIDATED-001", class: "ValidatedError", cause: Cause::Unsupported, remediation: None },
ErrorSpec { code: "E-VALIDATED-002", class: "ValidatedError", cause: Cause::UserInput, remediation: None },
Expand Down
6 changes: 4 additions & 2 deletions alkahest-core/src/holonomic/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,10 @@ pub use hyperterm::{GammaFactor, ProperTerm};
pub use modular::{binomial_mod, ModularError, ModularEvaluation, ModularRecurrence};
pub use qfield::{PolyK, RatK, Rn};
pub use qzeil::{
q_boundary_status, q_zeilberger, QBoundaryStatus, QCertificate, QHolonomicError, QProperTerm,
QZeilbergerOpts, QZeilbergerReport, QZeilbergerResult,
cyclotomic_polynomial, q_boundary_status, q_specialize_at_root_of_unity, q_zeilberger,
CycloElem, CycloField, QBoundaryStatus, QCertificate, QHolonomicError, QProperTerm,
QRootOfUnitySpecialization, QRootOfUnityStatus, QZeilbergerOpts, QZeilbergerReport,
QZeilbergerResult,
};
pub use zeilberger::{
boundary_side_condition, boundary_term, zeilberger, zeilberger_search, OrderSearch,
Expand Down
Loading
Loading