There was an error while loading. Please reload this page.
Drop the LaTeX braces left in prose, now that nothing typesets them Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QY2a7349dKv2NdiDi2aDJx
Write the Lagrangians as plain text: the wiki does not render math Tested on the live wiki with a throwaway page (since removed): inline $…$, $$ blocks with the delimiters on their own lines, $$ on a single line, and a fenced ```math block all print literally. The fenced block is even rewritten to $$…$$ before being shown, so the preprocessor runs and the typesetter never does. GitHub's own documentation lists wikis among the surfaces where math renders; on this wiki it does not, so the equations shipped as raw LaTeX. They are now Unicode in fenced blocks, matching how every model Lagrangian further down the page is already written (G₂ = −X, G₃ = …). Nothing else about them changes: same conventions, same 1/8πG_N normalisation, same source. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QY2a7349dKv2NdiDi2aDJx
Ready the wiki for the v3.3.4.4 release Checked every page against what is actually public now, not against the devel branch it was written for. The substantive fix is the Python module: the released code builds `hiclassy` with a `HiClass` object (python/hiclassy.pyx, Makefile target `hiclassy`) and provides no `classy` module at all, so every `from classy import Class` on the wiki was about to document an import that does not exist. Python-wrapper.md and Installation.md now use hiclassy throughout, the PyPI section no longer claims the import name differs from the local build, and the samplers note says plainly that anything importing `classy` needs pointing at `hiclassy`. Also corrected against the released tree: - PyPI is an sdist, not a wheel: pip compiles the C code locally. The old text promised an install "without compiling anything locally". - `pip install hiclassy` no longer needs numpy and scipy spelled out; they are declared from 3.3.4.3 on. - the zip link pointed at archive/hi_class.zip, a branch that no longer exists -> the v3.3.4.4 tag archive - `mkdir -p output` dropped from the quick starts: output/ now ships - version lines -> hi_class v3.3.4.4 (built on CLASS v3.3.4) - Home.md logo now comes from the repository, not miguelzuma.github.io - the cccg worked example links to commit 31382d65 in the public repository, where it is now reachable, instead of naming a devel commit PUBLISHING.md removed as the release-day step says; it is preserved in this history and copied to ~/code/hi_class_notes/code_worklog/wiki_PUBLISHING.md. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QY2a7349dKv2NdiDi2aDJx
Write out the Horndeski and GLPV Lagrangians The covariant page named G2...G5 in every model section without ever saying what they multiply, so a reader could not check a model's Lagrangian against a paper, or against their own. It now carries the action and L2...L5 in the conventions of the code paper (1605.06102 eqs 2.1-2.5), the M*^2 definition, and the note that the G's already carry 1/8*pi*G_N -- which is why every G4 on the page starts from 1/2. The beyond-Horndeski section gains the two GLPV terms it was already discussing, from Traykova, Bellini & Ferreira (1902.10687 eq 2.2), in the same normalisation. These are the first equations in the wiki. GitHub renders $$ blocks with KaTeX in wikis as well as in Markdown; each block was checked against KaTeX (and LaTeX) before committing, and PUBLISHING.md now says to look at the rendered section once after the release force-push. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QY2a7349dKv2NdiDi2aDJx
Avoid 'class' as a taxonomy word (collides with CLASS/hi_class) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Fold beyond-Horndeski into the model pages; drop the standalone page The models are now merged into devel hi_class (1fb224c2), so they are regular next-release models: glpv_galileon gets a full section on Covariant theories (plus a 'Beyond Horndeski and DHOST' comments section: GLPV implemented, DHOST work in progress, refs 1308.4685 and 1608.08135) and propto_omega_bh a section on Parametrized alphas. Running examples table now lists all 16 inis. Beyond-Horndeski-GLPV.md removed along with its sidebar/Home entries and branch markers. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Add the beyond-Horndeski (GLPV) page Documents glpv_galileon (9-parameter vector, quartic_cg submodel) and propto_omega_bh (propto_omega + c_H), verified against branch v3-beyond_horndeski @ bb3a679f, with a branch-feature banner and an honest numerical-caveats section (alpha_H high-k stiffness, tested mitigations, the background_Nloga guard needed after rebase). Cross-linked from the sidebar, Home, both model pages and Output-files; PUBLISHING.md notes how to drop the branch markers if the branch makes the release. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Rename Models pages to colon-free filenames GitHub's markdown renderer parses a colon in a relative link target as a URI scheme and sanitizes the link away, so [x](Models:-Covariant-theories) rendered as plain text. Pages renamed to Covariant-theories, Parametrized-alphas, Expansion-history; all internal references updated. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>