pub struct ShimuraVariety {
pub datum: ShimuraDatum,
pub level: String,
pub complex_dimension: usize,
}Expand description
A Shimura variety Sh_K(G, X) as a moduli space.
Fields§
§datum: ShimuraDatumThe Shimura datum.
level: StringThe level K (compact open subgroup, described as a string).
complex_dimension: usizeComplex dimension.
Implementations§
Source§impl ShimuraVariety
impl ShimuraVariety
Sourcepub fn new(datum: ShimuraDatum, level: impl Into<String>, dim: usize) -> Self
pub fn new(datum: ShimuraDatum, level: impl Into<String>, dim: usize) -> Self
Create a Shimura variety with the given datum and level.
Sourcepub fn modular_curve_y(n: usize) -> Self
pub fn modular_curve_y(n: usize) -> Self
The modular curve Y(N) = Sh_{Γ(N)}(GL_2, H).
Trait Implementations§
Source§impl Clone for ShimuraVariety
impl Clone for ShimuraVariety
Source§fn clone(&self) -> ShimuraVariety
fn clone(&self) -> ShimuraVariety
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ShimuraVariety
impl RefUnwindSafe for ShimuraVariety
impl Send for ShimuraVariety
impl Sync for ShimuraVariety
impl Unpin for ShimuraVariety
impl UnsafeUnpin for ShimuraVariety
impl UnwindSafe for ShimuraVariety
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more