Update dependencies (#5518)

This commit is contained in:
hongming
2023-02-12 23:09:20 +08:00
committed by GitHub
parent d3b35fb2da
commit a979342f56
1486 changed files with 126660 additions and 71128 deletions

View File

@@ -31,15 +31,15 @@ func numberOfEdges(collection *ast.Term) int {
return 0
}
func builtinReachable(bctx BuiltinContext, args []*ast.Term, iter func(*ast.Term) error) error {
func builtinReachable(bctx BuiltinContext, operands []*ast.Term, iter func(*ast.Term) error) error {
// Error on wrong types for args.
graph, err := builtins.ObjectOperand(args[0].Value, 1)
graph, err := builtins.ObjectOperand(operands[0].Value, 1)
if err != nil {
return err
}
var queue []*ast.Term
switch initial := args[1].Value.(type) {
switch initial := operands[1].Value.(type) {
case *ast.Array, ast.Set:
foreachVertex(ast.NewTerm(initial), func(t *ast.Term) {
queue = append(queue, t)
@@ -72,35 +72,47 @@ func builtinReachable(bctx BuiltinContext, args []*ast.Term, iter func(*ast.Term
return iter(ast.NewTerm(reached))
}
// pathBuilder is called recursively to build an array of paths that are reachable from the root
func pathBuilder(graph ast.Object, root *ast.Term, path []*ast.Term, paths []*ast.Term, reached ast.Set) []*ast.Term {
// pathBuilder is called recursively to build a Set of paths that are reachable from the root
func pathBuilder(graph ast.Object, root *ast.Term, path []*ast.Term, edgeRslt ast.Set, reached ast.Set) {
paths := []*ast.Term{}
if edges := graph.Get(root); edges != nil {
path = append(path, root)
if numberOfEdges(edges) >= 1 {
foreachVertex(edges, func(neighbor *ast.Term) {
if reached.Contains(neighbor) {
// If we've already reached this node, return current path (avoid infinite recursion)
paths = append(paths, path...)
edgeRslt.Add(ast.ArrayTerm(paths...))
} else {
reached.Add(root)
paths = pathBuilder(graph, neighbor, path, paths, reached)
pathBuilder(graph, neighbor, path, edgeRslt, reached)
}
})
} else {
paths = append(paths, path...)
edgeRslt.Add(ast.ArrayTerm(paths...))
}
} else {
// Node is nonexistent (not in graph). Commit the current path (without adding this root)
paths = append(paths, path...)
edgeRslt.Add(ast.ArrayTerm(paths...))
}
return paths
}
func builtinReachablePaths(bctx BuiltinContext, args []*ast.Term, iter func(*ast.Term) error) error {
func builtinReachablePaths(bctx BuiltinContext, operands []*ast.Term, iter func(*ast.Term) error) error {
var traceResult = ast.NewSet()
// Error on wrong types for args.
graph, err := builtins.ObjectOperand(args[0].Value, 1)
graph, err := builtins.ObjectOperand(operands[0].Value, 1)
if err != nil {
return err
}
@@ -108,7 +120,7 @@ func builtinReachablePaths(bctx BuiltinContext, args []*ast.Term, iter func(*ast
// This is a queue that holds all nodes we still need to visit. It is
// initialised to the initial set of nodes we start out with.
var queue []*ast.Term
switch initial := args[1].Value.(type) {
switch initial := operands[1].Value.(type) {
case *ast.Array, ast.Set:
foreachVertex(ast.NewTerm(initial), func(t *ast.Term) {
queue = append(queue, t)
@@ -117,23 +129,20 @@ func builtinReachablePaths(bctx BuiltinContext, args []*ast.Term, iter func(*ast
return builtins.NewOperandTypeErr(2, initial, "{array, set}")
}
results := ast.NewSet()
for _, node := range queue {
// Find reachable paths from edges in root node in queue and append arrays to the results set
if edges := graph.Get(node); edges != nil {
if numberOfEdges(edges) >= 1 {
foreachVertex(edges, func(neighbor *ast.Term) {
paths := pathBuilder(graph, neighbor, []*ast.Term{node}, []*ast.Term{}, ast.NewSet(node))
results.Add(ast.ArrayTerm(paths...))
pathBuilder(graph, neighbor, []*ast.Term{node}, traceResult, ast.NewSet(node))
})
} else {
results.Add(ast.ArrayTerm(node))
traceResult.Add(ast.ArrayTerm(node))
}
}
}
return iter(ast.NewTerm(results))
return iter(ast.NewTerm(traceResult))
}
func init() {