We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement a data structure to handle vector graphs:
NOTE: All graphs in the vector should have the same number of external legs, but the labels of the external legs can be different.
For a GraphVector, gv = GraphVector([g(1, 2), g(1, 3), g(2, 3)]). We expect the following:
function feynman_diagram(vertices::Vector{GraphVector}, topology::Vector{Vector{Int}}; external=[], factor=one(_dtype.factor), weight=zero(_dtype.weight), name="", type=:generic)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Implement a data structure to handle vector graphs:
NOTE: All graphs in the vector should have the same number of external legs, but the labels of the external legs can be different.
struct GraphVector{F, W} <: AbstractVector
graphs::Vector{Graphs{F, W}}
end
For a GraphVector, gv = GraphVector([g(1, 2), g(1, 3), g(2, 3)]). We expect the following:
function feynman_diagram(vertices::Vector{GraphVector}, topology::Vector{Vector{Int}};
external=[], factor=one(_dtype.factor), weight=zero(_dtype.weight), name="", type=:generic)
The text was updated successfully, but these errors were encountered: