CI tests#7
Merged
Merged
Conversation
- Push triggers on both master and main branches - Clippy runs with -D warnings for both standard and native features - New native-backend job: build + test with native, native+approx - Miri job: continue-on-error (nightly-only, can't run SIMD/FFI) - native-backend added to conclusion gate All CI jobs default to stable toolchain except format (nightly for rustfmt) and miri (nightly required). https://claude.ai/code/session_01QnZH2adQ6oXzTYPkLTH6G7
PR checks (all stable): - clippy: standard + native features, -D warnings - format: stable rustfmt (was nightly, unnecessary) - tests: stable + beta + MSRV (dropped nightly from matrix) - native-backend: build + nextest with native feature - nostd, cross_test, blas-msrv: all stable Merge queue / push only (nightly): - miri: can't run SIMD intrinsics anyway - cargo-careful: nightly-only -Z flag - docs: nightly needed for --cfg docsrs Nightly in the test matrix risked SIGILL on GHA runners (no AVX-512) and contradicts the stable-safe SIMD design. The conclusion job already accepts "skipped" so gated jobs don't block PRs. https://claude.ai/code/session_01QnZH2adQ6oXzTYPkLTH6G7
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
AdaWorldAPI
pushed a commit
that referenced
this pull request
Mar 30, 2026
Tactics 1-12 from the 34-tactic integration plan, adapted to ndarray: styles::rte — #1 Recursive Thought Expansion (Hofstadter) styles::htd — #2 Hierarchical Thought Decomposition (CLAM) styles::smad — #3 Structured Multi-Agent Debate (NARS revision) styles::tcp — #5 Thought Chain Pruning (Berry-Esseen) styles::irs — #9 Iterative Roleplay Synthesis (XOR binding) styles::mcp — #10 Meta-Cognition (Brier score calibration) styles::tca — #12 Temporal Context (Reichenbach tense) Plus additions to existing modules: causal_diff.rs — #4 reverse_trace() (Pearl Rung 3) bgz17_bridge.rs — #6 inject_noise() (simulated annealing) nars.rs — #7 adversarial_critique(), #11 detect_contradiction() cascade.rs — #8 adaptive_resolution() Every tactic is fn(Base17, NarsTruth) → result. No LLM prompting. 16 tests passing. API: crate::hpc::styles::rte::expand() etc. https://claude.ai/code/session_01M3at4EuHVvQ8S95mSnKgtK
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
CI tests