GraphMatcherGenerateMappings Method  | 
 
            Helper method for brute forcing the possible mappings.
            
 
    Namespace: 
   VDS.RDF
    Assembly:
   dotNetRDF (in dotNetRDF.dll) Version: 
Syntaxpublic static IEnumerable<Dictionary<INode, INode>> GenerateMappings(
	Dictionary<INode, INode> baseMapping,
	Dictionary<INode, List<INode>> possibleMappings
)
Public Shared Function GenerateMappings ( 
	baseMapping As Dictionary(Of INode, INode),
	possibleMappings As Dictionary(Of INode, List(Of INode))
) As IEnumerable(Of Dictionary(Of INode, INode))
Parameters
- baseMapping
 - Type: System.Collections.GenericDictionaryINode, INode
Base Mapping. - possibleMappings
 - Type: System.Collections.GenericDictionaryINode, ListINode
Possible Mappings. 
Return Value
Type: 
IEnumerableDictionaryINode, 
INode[Missing <returns> documentation for "M:VDS.RDF.GraphMatcher.GenerateMappings(System.Collections.Generic.Dictionary{VDS.RDF.INode,VDS.RDF.INode},System.Collections.Generic.Dictionary{VDS.RDF.INode,System.Collections.Generic.List{VDS.RDF.INode}})"]
Remarks
            The base mapping at the time of the initial call should contain known good mappings.
            
See Also