• Places
    • Home
    • Graphs
    • Prefixes
  • Admin
    • Users
    • Settings
    • Plugins
    • Statistics
  • CPACK
    • Home
    • List packs
    • Submit pack
  • Repository
    • Load local file
    • Load from HTTP
    • Load from library
    • Remove triples
    • Clear repository
  • Query
    • YASGUI SPARQL Editor
    • Simple Form
    • SWISH Prolog shell
  • Help
    • Documentation
    • Tutorial
    • Roadmap
    • HTTP Services
  • Login

F.2 Library predicates
AllApplicationManualNameSummaryHelp

  • Documentation
    • Reference manual
      • Summary
        • Library predicates
          • library(aggregate)
          • library(ansi_term)
          • library(apply)
          • library(assoc)
          • library(broadcast)
          • library(charsio)
          • library(check)
          • library(clpb)
          • library(clpfd)
          • library(clpqr)
          • library(csv)
          • library(dcgbasics)
          • library(dcghighorder)
          • library(debug)
          • library(dicts)
          • library(error)
          • library(fastrw)
          • library(explain)
          • library(help)
          • library(gensym)
          • library(heaps)
          • library(increval)
          • library(intercept)
          • library(iostream)
          • library(listing)
          • library(lists)
          • library(main)
          • library(occurs)
          • library(option)
          • library(optparse)
          • library(ordsets)
          • library(persistency)
          • library(portraytext)
          • library(predicate_options)
          • library(prologdebug)
          • library(prologjiti)
          • library(prologpack)
          • library(prologxref)
          • library(pairs)
          • library(pio)
          • library(random)
          • library(rbtrees)
          • library(readutil)
          • library(record)
          • library(registry)
          • library(settings)
          • library(simplex)
          • library(statistics)
          • library(terms)
          • library(ugraphs)
          • library(url)
          • library(www_browser)
          • library(solution_sequences)
          • library(thread)
          • library(thread_pool)
          • library(varnumbers)
          • library(yall)
    • Packages
bsumes_chk/2True if Generic can be made equivalent to Specific without changing Specific. term_factorized/3Is true when Skeleton is Term where all subterms that appear multiple times are replaced by a variable and Substitution is a list of Var=Value that provides the subterm at the location Var. term_size/2True if Size is the size in _cells_ occupied by Term on the global (term) stack. term_subsumer/3General is the most specific term that is a generalisation of Special1 and Special2. variant/2Same as SWI-Prolog =|Term1 =@= Term2|=.

F.2.51 library(ugraphs)

add_edges/3Unify NewGraph with a new graph obtained by adding the list of Edges to Graph.
add_vertices/3Unify NewGraph with a new graph obtained by adding the list of Vertices to Graph.
complement/2UGraphOut is a ugraph with an edge between all vertices that are _not_ connected in UGraphIn and all edges from UGraphIn removed.
compose/3Compose NewGraph by connecting the _drains_ of LeftGraph to the _sources_ of RightGraph.
connect_ugraph/3Adds Start as an additional vertex that is connected to all vertices in UGraphIn.
del_edges/3Unify NewGraph with a new graph obtained by removing the list of Edges from Graph.
del_vertices/3Unify NewGraph with a new graph obtained by deleting the list of Vertices and all the edges that start from or go to a vertex in Vertices to the Graph.
edges/2Unify Edges with all edges appearing in Graph.
neighbors/3Neigbours is a sorted list of the neighbours of Vertex in Graph.
neighbours/3Neigbours is a sorted list of the neighbours of Vertex in Graph.
reachable/3True when Vertices is an ordered set of vertices reachable in UGraph, including Vertex.
top_sort/2Sorted is a topological sorted list of nodes in Graph.
top_sort/3Sorted is a topological sorted list of nodes in Graph.
transitive_closure/2Generate the graph Closure as the transitive closure of Graph.
transpose_ugraph/2Unify NewGraph with a new graph obtained from Graph by replacing all edges of the form V1-V2 by edges of the form V2-V1.
ugraph_union/3NewGraph is the union of Graph1 and Graph2.
vertices/2Unify Vertices with all vertices appearing in Graph.
vertices_edges_to_ugraph/3Create a UGraph from Vertices and edges.
vertices_edges_to_ugraph/3Create unweighted graph
vertices/2Find vertices in graph
edges/2Find edges in graph
add_vertices/3Add vertices to graph
del_vertices/3Delete vertices from graph
add_edges/3Add edges to graph
del_edges/3Delete edges from graph
transpose_ugraph/2Invert the direction of all edges
neighbors/3Find neighbors of vertice

ClioPatria (version V3.1.1-42-gd6a756b-DIRTY)