Skip to content

Commit

Permalink
[FTheoryTools] Introduce function tuanble_sections
Browse files Browse the repository at this point in the history
  • Loading branch information
HereAround committed Feb 7, 2025
1 parent aa59a0a commit c373ac7
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions experimental/FTheoryTools/docs/src/generalities.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ ambient_space(m::AbstractFTheoryModel)
base_space(m::AbstractFTheoryModel)
fiber_ambient_space(m::AbstractFTheoryModel)
explicit_model_sections(m::AbstractFTheoryModel)
tunable_sections(m::AbstractFTheoryModel)
defining_section_parametrization(m::AbstractFTheoryModel)
classes_of_model_sections(m::AbstractFTheoryModel)
defining_classes(m::AbstractFTheoryModel)
Expand Down
20 changes: 20 additions & 0 deletions experimental/FTheoryTools/src/AbstractFTheoryModels/attributes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1315,6 +1315,26 @@ julia> h = euler_characteristic(qsm_model; check = false)
end


@doc raw"""
tunable_sections(m::AbstractFTheoryModel)
Return a vector containing all sections that can be tuned.
```jldoctest
julia> m = literature_model(arxiv_id = "1109.3454", equation = "3.1")
Assuming that the first row of the given grading is the grading under Kbar
Global Tate model over a not fully specified base -- SU(5)xU(1) restricted Tate model based on arXiv paper 1109.3454 Eq. (3.1)
julia> length(tunable_sections(m))
9
```
"""
@attr Vector{String} tunable_sections(m::AbstractFTheoryModel) = collect(keys(explicit_model_sections(m)))





##########################################
### (4) Attributes specially for the QSMs
Expand Down
1 change: 1 addition & 0 deletions experimental/FTheoryTools/src/exports.jl
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ export tate_section_a6
export topological_intersection_numbers_among_ci_curves
export topological_intersection_numbers_among_nontrivial_ci_curves
export torsion_sections
export tunable_sections
export tune
export verify_euler_characteristic_from_hodge_numbers
export weierstrass_ideal_sheaf
Expand Down

0 comments on commit c373ac7

Please sign in to comment.