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
2 changes: 0 additions & 2 deletions ext/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ resolver = "2"
[dependencies]
algebra = { path = "crates/algebra", default-features = false }
bivec = { path = "crates/bivec" }
chart = { path = "crates/chart" }
fp = { path = "crates/fp", default-features = false }
maybe-rayon = { path = "crates/maybe-rayon" }
once = { path = "crates/once" }
Expand Down Expand Up @@ -65,7 +64,6 @@ nassau = []
members = [
"crates/algebra",
"crates/bivec",
"crates/chart",
"crates/fp",
"crates/maybe-rayon",
"crates/once",
Expand Down
9 changes: 0 additions & 9 deletions ext/crates/chart/Cargo.toml

This file was deleted.

1 change: 0 additions & 1 deletion ext/crates/sseq/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ edition = "2024"

[dependencies]
bivec = { path = "../bivec/" }
chart = { path = "../chart/" }
fp = { path = "../fp/", default-features = false }
maybe-rayon = { path = "../maybe-rayon" }
once = { path = "../once/" }
Expand Down
File renamed without changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#![deny(clippy::use_self, unsafe_op_in_unsafe_fn)]

use std::{collections::HashMap, fmt::Display, io};

#[rustfmt::skip]
Expand Down
1 change: 1 addition & 0 deletions ext/crates/sseq/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#![deny(clippy::use_self, unsafe_op_in_unsafe_fn)]

mod bigraded;
pub mod charting;
pub mod coordinates;
mod differential;
mod sseq;
Expand Down
2 changes: 1 addition & 1 deletion ext/crates/sseq/src/sseq.rs
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ impl<P: SseqProfile> Sseq<P> {
}

/// This shifts the sseq horizontally so that the minimum x is 0.
pub fn write_to_graph<'a, T: chart::Backend>(
pub fn write_to_graph<'a, T: crate::charting::Backend>(
&self,
mut g: T,
r: i32,
Expand Down
2 changes: 1 addition & 1 deletion ext/examples/chart.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use algebra::Algebra;
use chart::SvgBackend;
use ext::{
chain_complex::{ChainComplex, FreeChainComplex},
utils::query_module,
};
use sseq::charting::SvgBackend;

fn main() -> anyhow::Result<()> {
ext::utils::init_logging()?;
Expand Down
2 changes: 1 addition & 1 deletion ext/examples/d2_charts.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
use std::{fs::File, sync::Arc};

use algebra::Algebra;
use chart::{Backend as _, TikzBackend as Backend};
use ext::{
chain_complex::{ChainComplex, FreeChainComplex},
secondary::{SecondaryLift, SecondaryResolution},
};
use sseq::charting::{Backend as _, TikzBackend as Backend};

fn main() -> anyhow::Result<()> {
ext::utils::init_logging()?;
Expand Down
6 changes: 4 additions & 2 deletions ext/examples/unstable_chart.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,14 @@ use algebra::{
Algebra,
module::{Module, SuspensionModule},
};
use chart::{Backend, Orientation, TikzBackend};
use ext::{
chain_complex::{FiniteChainComplex, FreeChainComplex},
resolution::UnstableResolution,
};
use sseq::coordinates::Bidegree;
use sseq::{
charting::{Backend, Orientation, TikzBackend},
coordinates::Bidegree,
};

fn main() -> anyhow::Result<()> {
ext::utils::init_logging()?;
Expand Down
1 change: 0 additions & 1 deletion ext/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@
//! | --- | --- |
//! | [algebra] | This defines algebras, modules and module homomorphisms |
//! | [bivec] | This is a small crate that provides [`BiVec`](`bivec::BiVec`) - a variant of [`Vec`] indexed by an `i32` whose starting index may be non-zero. |
//! | [chart] | This provides some APIs for generating charts |
//! | [fp] | This implements linear algebra over $\mathbb{F}_p$, as well as general helper functions about primes. |
//! | [once] | This provides `OnceVec` and `OnceBiVec`, a push-only vector with non-blocking reads. This models some partially computed infinite data structure, and we think of pushing as simply finding out more of this infinite data structure instead of genuinely mutating it. |
//! | [query] | This contains some helper functions for a command line interface. |
Expand Down