-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Small fix in the localizations. * Implement base change for affine schemes of the common types. * Base change for morphisms of affine schemes. * Base change for PrincipalOpenSubsets and SpecOpen. * Add base change for SimpleGlueings. * Add base change for CoveredSchemes. * Add base change for morphisms of CoveredSchemes.
- Loading branch information
1 parent
5de301c
commit 6e662c2
Showing
18 changed files
with
390 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
@doc raw""" | ||
base_change(phi::Any, X::Scheme) | ||
For a `Scheme` ``X`` over a `base_ring` ``𝕜`` and a map ``φ : 𝕜 → R`` | ||
we compute ``X' = X ×ₖ Spec(R)`` and return a pair `(X', f)` where | ||
``f : X' → X`` is the canonical morphism. | ||
!!! note | ||
We do not restrict `phi` to be a `Hecke.Map` so that one can also use coercion, anonymous functions, etc. | ||
""" | ||
function base_change(phi::Any, X::Scheme) | ||
error("base_change not implemented for input of type $(typeof(X))") | ||
end | ||
|
||
@doc raw""" | ||
base_change(phi::Any, f::SchemeMor; | ||
domain_map::SchemeMor, codomain_map::SchemeMor | ||
) | ||
For a morphism ``f : X → Y`` with both ``X`` and ``Y`` defined over a | ||
`base_ring` ``𝕜`` and a map ``φ : 𝕜 → R`` return a triple `(a, F, b)` | ||
where ``a : X' → X`` is the morphism from `base_change(phi, X)`, | ||
``b : Y' → Y`` the one for ``Y``, and ``F : X' → Y'`` the induced | ||
morphism on those fiber products. | ||
!!! note | ||
We do not restrict `phi` to be a `Hecke.Map` so that one can also use coercion, anonymous functions, etc. | ||
!!! note | ||
The morphisms ``a`` and ``b`` can be passed as the optional arguments `domain_map` and `codomain_map`, respectively. | ||
""" | ||
function base_change(phi::Any, f::SchemeMor; | ||
domain_map::SchemeMor, codomain_map::SchemeMor | ||
) | ||
error("base_change not implemented for input of type $(typeof(f))") | ||
end |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.