Uses of Class
org.spectrumauctions.sats.core.model.cats.graphalgorithms.Vertex
-
Packages that use Vertex Package Description org.spectrumauctions.sats.core.model.cats org.spectrumauctions.sats.core.model.cats.graphalgorithms org.spectrumauctions.sats.opt.model.lsvm -
-
Uses of Vertex in org.spectrumauctions.sats.core.model.cats
Methods in org.spectrumauctions.sats.core.model.cats that return Vertex Modifier and Type Method Description VertexCATSLicense. getVertex() -
Uses of Vertex in org.spectrumauctions.sats.core.model.cats.graphalgorithms
Fields in org.spectrumauctions.sats.core.model.cats.graphalgorithms declared as Vertex Modifier and Type Field Description VertexVertexCell. _vFields in org.spectrumauctions.sats.core.model.cats.graphalgorithms with type parameters of type Vertex Modifier and Type Field Description protected java.util.List<Vertex>Graph. _verticesMethods in org.spectrumauctions.sats.core.model.cats.graphalgorithms that return Vertex Modifier and Type Method Description VertexVertex. cloneIt()The method returns a deep copy of the object.VertexVertex. getChildVertex(int i)VertexEdge. getSink()VertexEdge. getSource()Methods in org.spectrumauctions.sats.core.model.cats.graphalgorithms that return types with arguments of type Vertex Modifier and Type Method Description java.util.List<java.util.List<Vertex>>Graph. coneDecomp(java.util.List<Vertex> S, double delta, java.util.List<Vertex> coneVertices)The method implements the cone decomposition of the graph.java.util.Set<java.util.Set<Vertex>>Graph. findAllPaths(Vertex source, Vertex destination)The method implements the dfs algorithm to find all paths between two vertices.java.util.List<Vertex>Graph. getBallShell(Vertex center, double radius, boolean recompute)The method returns a ball shell of a graph with a center in 'center' and with the given radiusjava.util.List<Vertex>Graph. getCone(Vertex center, double radius, java.util.List<Vertex> S)The method returns the cone with a vertex in 'center' and a given radius in respect to the set of vertices Sjava.util.List<Vertex>Graph. getVertices()The method returns the list of vertices of the graphjava.util.List<java.util.List<Vertex>>Graph. starDecomp(Vertex x0, double delta, double epsilon, java.util.List<Vertex> y, java.util.List<Vertex> coneVertices)The method returns the Star-decomposition of the graphMethods in org.spectrumauctions.sats.core.model.cats.graphalgorithms with parameters of type Vertex Modifier and Type Method Description voidVertex. addChildVertex(Vertex child)doubleGraph. BallCut(Vertex x, double rad, double delta)booleanGraph. BellmanFord(Vertex sourceID, int idx)The method implements the Bellman-Ford graph search algorithm (the complexity is O(V*E) )voidGraph. BFS(Vertex s)The method implements the Breadth-First-Search in the graph given the source vertexdoubleGraph. ConeCut(Vertex center, double lambda, double lambda1, java.util.List<Vertex> S)voidGraph. Dijkstra(Vertex source, int idx)java.util.Set<java.util.Set<Vertex>>Graph. findAllPaths(Vertex source, Vertex destination)The method implements the dfs algorithm to find all paths between two vertices.voidGraph. FordFulkerson(Vertex s, Vertex t)The method implements Ford-Fulkerson maximum flow search method given the source vertex and the sink vertexGraphGraph. getBall(Vertex center, double radius, boolean recompute)The method returns a subgraph induced by a subset of vertices that are at most at distance=radius from the center vertexjava.util.List<Vertex>Graph. getBallShell(Vertex center, double radius, boolean recompute)The method returns a ball shell of a graph with a center in 'center' and with the given radiusjava.util.List<Vertex>Graph. getCone(Vertex center, double radius, java.util.List<Vertex> S)The method returns the cone with a vertex in 'center' and a given radius in respect to the set of vertices Sjava.util.List<VertexCell>Graph. getPath(Vertex v, Vertex u)The method returns a path between two vertices i.e.doubleGraph. getRadius(Vertex v, boolean recompute)The method returns the radius of the graph i.e.voidEdge. init(Vertex source, Vertex sink, double capacity, int numberOfFlows)booleanGraph. isAdjacent(Vertex u, Vertex v)The method returns true if there is an edge from the vertex U to the vertex V and false otherwisejava.util.List<Graph>Graph. lowStretchTree(Vertex center, double betta, java.util.List<Edge> bridges)The method generate a Low Stretch Spanning Tree for the graphjava.util.List<java.util.List<Vertex>>Graph. starDecomp(Vertex x0, double delta, double epsilon, java.util.List<Vertex> y, java.util.List<Vertex> coneVertices)The method returns the Star-decomposition of the graphMethod parameters in org.spectrumauctions.sats.core.model.cats.graphalgorithms with type arguments of type Vertex Modifier and Type Method Description voidGraph. addListOfVertices(java.util.List<Vertex> vrts)The method updates the list of vertices of the graphdoubleGraph. ConeCut(Vertex center, double lambda, double lambda1, java.util.List<Vertex> S)java.util.List<java.util.List<Vertex>>Graph. coneDecomp(java.util.List<Vertex> S, double delta, java.util.List<Vertex> coneVertices)The method implements the cone decomposition of the graph.java.util.List<Edge>Graph. getBoundary(java.util.List<Vertex> vertices)java.util.List<Vertex>Graph. getCone(Vertex center, double radius, java.util.List<Vertex> S)The method returns the cone with a vertex in 'center' and a given radius in respect to the set of vertices SGraphGraph. induceGraph(java.util.List<Vertex> vertices)The method returns the graph induced from the current one by a set of vertices Complexity O(n*m) because of adjacency lists.java.util.List<java.util.List<Vertex>>Graph. starDecomp(Vertex x0, double delta, double epsilon, java.util.List<Vertex> y, java.util.List<Vertex> coneVertices)The method returns the Star-decomposition of the graphConstructors in org.spectrumauctions.sats.core.model.cats.graphalgorithms with parameters of type Vertex Constructor Description Edge(Vertex source, Vertex sink, double capacity, int numberOfFlows)Edge(Vertex source, Vertex sink, int numberOfFlows)VertexCell(Vertex v, double w)VertexCell(Vertex v, double w, double f)Constructor parameters in org.spectrumauctions.sats.core.model.cats.graphalgorithms with type arguments of type Vertex Constructor Description Graph(java.util.List<Vertex> vertices)The method constructsGraph(java.util.List<Vertex> vertices, java.util.List<java.util.List<VertexCell>> adjLsts)Graph(java.util.List<Vertex> vertices, java.util.List<VertexCell>... adjLst)ConstructorSpectralGraph(java.util.List<Vertex> vertices, java.util.List<VertexCell>... adjLst) -
Uses of Vertex in org.spectrumauctions.sats.opt.model.lsvm
Methods in org.spectrumauctions.sats.opt.model.lsvm that return Vertex Modifier and Type Method Description VertexLSVMGridGraph. getVertex(LSVMLicense license)
-