could you give me a doc about julia ITensor l cant open the websit
I hope you are eventually able to access our website. Can you access Github? If so, you can see the source for our Julia ITensor docs here:
https://github.com/ITensor/ITensors.jl/tree/main/docs/src
If you look at the examples/ folder or the tutorials/ folder, you can read those files which are in “Markdown” format so quite readable in that form.
For the other files such as ITensorType.md
that have lines like diag_itensor(::Type{<:Number}, ::QN, ::ITensors.Indices)
,
all those lines do is to bring in the “docstring” for the function such as diag_itensor
into the documentation. So for those, you can open the Julia REPL (Julia interactive console) and type
julia> ? diag_itensor(::Type{<:Number}, ::QN, ::ITensors.Indices)
and you will get the same information that would appear in our docs.
(Technically, it is also possible to generate a pdf of our docs but I could not yet get it to work.)