Go to the source code of this file.
|
tuple | python.create_atoms_by_type.a = AtomSpace() |
|
tuple | python.create_atoms_by_type.TV = TruthValue(1, 0.8) |
|
| python.create_atoms_by_type.concept_type = types.ConceptNode |
|
tuple | python.create_atoms_by_type.A = a.add_node(concept_type, 'Apple', TV) |
|
tuple | python.create_atoms_by_type.B = a.add_node(concept_type, 'Berry', TruthValue(0.5, 0.75)) |
|
tuple | python.create_atoms_by_type.C = a.add_node(concept_type, 'Comestible', TV) |
|
| python.create_atoms_by_type.inh_type = types.InheritanceLink |
|
tuple | python.create_atoms_by_type.AB = a.add_link(inh_type, [A, B], TV) |
|
tuple | python.create_atoms_by_type.BC = a.add_link(inh_type, [B, C], TV) |
|
tuple | python.create_atoms_by_type.AC = a.add_link(inh_type, [A, C]) |
|