Uses of Class
com.gpudb.protocol.SolveGraphRequest
-
Packages that use SolveGraphRequest Package Description com.gpudb com.gpudb.protocol -
-
Uses of SolveGraphRequest in com.gpudb
Methods in com.gpudb with parameters of type SolveGraphRequest Modifier and Type Method Description SolveGraphResponseGPUdb. solveGraph(SolveGraphRequest request)Solves an existing graph for a type of problem (e.g., shortest path, page rank, traveling salesman, etc.) using source nodes, destination nodes, and additional, optional weights and restrictions. -
Uses of SolveGraphRequest in com.gpudb.protocol
Methods in com.gpudb.protocol that return SolveGraphRequest Modifier and Type Method Description SolveGraphRequestSolveGraphRequest. setDestinationNodes(List<String> destinationNodes)It can be one of the nodal identifiers - e.g: 'NODE_WKTPOINT' for destination (target) nodes.SolveGraphRequestSolveGraphRequest. setGraphName(String graphName)Name of the graph resource to solve.SolveGraphRequestSolveGraphRequest. setOptions(Map<String,String> options)Additional parameters.SolveGraphRequestSolveGraphRequest. setRestrictions(List<String> restrictions)Additional restrictions to apply to the nodes/edges of an existing graph.SolveGraphRequestSolveGraphRequest. setSolutionTable(String solutionTable)Name of the table to store the solution, in [schema_name.]table_name format, using standard name resolution rules.SolveGraphRequestSolveGraphRequest. setSolverType(String solverType)The type of solver to use for the graph.SolveGraphRequestSolveGraphRequest. setSourceNodes(List<String> sourceNodes)It can be one of the nodal identifiers - e.g: 'NODE_WKTPOINT' for source nodes.SolveGraphRequestSolveGraphRequest. setWeightsOnEdges(List<String> weightsOnEdges)Additional weights to apply to the edges of an existing graph.
-