Miscellaneous
Printing options
AbstractAlgebra supports printing to LaTeX using the MIME type "text/latex". To enable LaTeX rendering in Jupyter notebooks and query for the current state, use the following functions:
AbstractAlgebra.PrettyPrinting.set_html_as_latex — Functionset_html_as_latex(fl::Bool)Toggles whether MIME type text/html should be printed as text/latex. Note that this is a global option. The return value is the old value.
AbstractAlgebra.PrettyPrinting.get_html_as_latex — Functionget_html_as_latex()Returns whether MIME type text/html is printed as text/latex.
Updating the type diagrams
Updating the diagrams of the documentation can be done by modifying and running the script docs/create_type_diagrams.jl. Note that this requires the package Kroki.
Attributes
Often it is desirable to have a flexible way to attach additional data to mathematical structures such as groups, rings, fields, etc. beyond what the original implementation covers. To facilitate this, we provide an attributes system: for objects of suitable types, one may use set_attribute! to attach key-value pairs to the object, and query them using has_attribute, get_attribute and get_attribute!.
Attributes are supported for all singletons (i.e., instances of an empty struct type), as well as for instances of mutable struct type for which attribute storage was enabled. There are two ways to enable attribute storage for such types:
- By applying
@attributesto a mutable struct declaration, storage is reserved inside that struct type itself (this increases the size of each struct by 8 bytes if no attributes are set). - By applying
@attributesto the name of a mutable struct type, methods are installed which store attributes to instances of the type in aWeakKeyDictoutside the struct.
AbstractAlgebra.@attributes — Macro@attributes typedefThis is a helper macro that ensures that there is storage for attributes in the type declared in the expression typedef, which must be either a mutable struct definition expression, or the name of a mutable struct type.
The latter variant is useful to enable attribute storage for types defined in other packages. Note that @attributes is idempotent: when applied to a type for which attribute storage is already available, it does nothing.
When applied to a struct definition this macro adds a new field to the struct. For structs without constructor, this will change the signature of the default inner constructor, which requires explicit values for every field, including the attribute storage field this macro adds. Usually it is thus preferable to add an explicit default constructor, as in the example below.
Examples
Applying the macro to a struct definition results in internal storage of the attributes:
julia> @attributes mutable struct MyGroup
order::Int
MyGroup(order::Int) = new(order)
end
julia> G = MyGroup(5)
MyGroup(5, #undef)
julia> set_attribute!(G, :isfinite, :true)
julia> get_attribute(G, :isfinite)
trueApplying the macro to a typename results in external storage of the attributes:
julia> mutable struct MyOtherGroup
order::Int
MyOtherGroup(order::Int) = new(order)
end
julia> @attributes MyOtherGroup
julia> G = MyOtherGroup(5)
MyOtherGroup(5)
julia> set_attribute!(G, :isfinite, :true)
julia> get_attribute(G, :isfinite)
trueAbstractAlgebra.has_attribute — Functionhas_attribute(G::Any, attr::Symbol)Return a boolean indicating whether G has a value stored for the attribute attr.
AbstractAlgebra.get_attribute — Functionget_attribute(G::Any, attr::Symbol, default::Any = nothing)Return the value stored for the attribute attr, or if no value has been set, return default.
AbstractAlgebra.get_attribute! — Functionget_attribute!(f::Function, G::Any, attr::Symbol)Return the value stored for the attribute attr of G, or if no value has been set, storekey => f()and returnf()`.
get_attribute!(G::Any, attr::Symbol, default::Any)Return the value stored for the attribute attr of G, or if no value has been set, store key => default, and return default.
AbstractAlgebra.set_attribute! — Functionset_attribute!(G::Any, data::Pair{Symbol, <:Any}...)Attach the given sequence of key=>value pairs as attributes of G.
set_attribute!(G::Any, attr::Symbol, value::Any)Attach the given value as attribute attr of G.