RCL - RoboCLuedo  v1.0
Francesco Ganci - S4143910 - Experimental Robotics Lab - Assignment 1
example_armor_cluedo_3.cpp
Go to the documentation of this file.
1 
2 
16 #include "ros/ros.h"
18 #include "armor_tools_armor_cluedo.h"
19 #include "armor_msgs/ArmorDirective.h"
20 #include "armor_msgs/ArmorDirectiveReq.h"
21 #include "armor_msgs/ArmorDirectiveRes.h"
22 
23 #include <iostream>
24 #include <string>
25 
26 int main( int argc, char* argv[] )
27 {
28  ros::init( argc, argv, "example_armor_cluedo_3" );
29  ros::NodeHandle nh;
30 
31 
32 
33 
34  // === before starting (see the previous examples)
35 
36  ArmorCluedo armor;
37  armor.Init( "/root/ontologies/my_super_ontology.owl" );
38  armor.AddIndiv( "John", "PERSON" );
39  armor.AddIndiv( "Pippo", "PERSON" );
40  armor.AddIndiv( "Broccoli", "WEAPON" );
41  armor.AddIndiv( "AK-47", "WEAPON" );
42  armor.AddIndiv( "Stadium", "PLACE" );
43  armor.AddIndiv( "Bathroom", "PLACE" );
44  armor.AddIndiv( "SmartHypothesis", "HYPOTHESIS" );
45  armor.UpdateOntology( );
46  armor.SetObjectProperty( "where", "Smarthypothesis", "Stadium" );
47  armor.SetObjectProperty( "who", "Smarthypothesis", "John" );
48  armor.SetObjectProperty( "what", "Smarthypothesis", "Broccoli" );
49  armor.UpdateOntology( );
50 
51 
52 
53 
54  // === QUERYING HYPOTHESES
55 
56  // find the tags of the complete hypotheses
57  // in this example, the tag 'SmartHypothesis' is complete
58  std::vector<std::string> complete_hypotheses = FindCompleteHypotheses( );
59 
60 
61 
62 
63  // === INCONSISTENT HYPOTHESES
64 
65  // you can also find the inconsistent hypotheses
66  // ATTENTION! In this implementation there's a difference between
67  // "discarded" hypotheses and "inconsistent" hypotheses, due to
68  // some issues inside aRMOR.
69  // in any case, using FindCompleteHypotheses() is recommended.
70  std::vector<std::string> inconsistent_hypotheses = FindCompleteHypotheses( );
71 
72  // let's make 'SmartHypothesis' inconsistent
73  armor.SetObjectProperty( "where", "SmatHypothesis", "Bathroom" );
74  armor.UpdateOntology( );
75  // now the hypothesis doesn't appear when calling FindCompleteHypotheses( )
76 
77 
78 
79 
80  // === DISCARD HYPOTHESES
81 
82  // the implementation of ArmorCluedo contains a workaroud, due to an
83  // issue in the implementation of aRMOR in "REMOVE" commands.
84  // let's suppose that there's another hypothesis, completed, but
85  // discarded due to a negative answer by the oracle
86 
87  armor.AddIndiv( "AnotherSmartHypothesis", "HYPOTHESIS" );
88  armor.SetObjectProperty( "where", "AnotherSmarthypothesis", "Stadium" );
89  armor.SetObjectProperty( "who", "AnotherSmarthypothesis", "John" );
90  armor.SetObjectProperty( "what", "AnotherSmarthypothesis", "Broccoli" );
91  armor.UpdateOntology( );
92 
93  // let's discard it with the function
94  armor.RemoveHypothesis( "AnotherSmarthypothesis" );
95  // THE HYPOTHESIS IS STILL PRESENT IN THE ONTOLOGY!
96  // but now it is tracked as deleted, so the FindCompleteHypotheses()
97  // won't return it later.
98  // you cannot de-discard hypotheses.
99 
100  return 0;
101 }
ArmorCluedo::AddIndiv
bool AddIndiv(std::string indivname, std::string classname, bool makeDisjoint=true)
add an individual to the ontology
Definition: armor_cluedo.cpp:53
ArmorCluedo::SetObjectProperty
bool SetObjectProperty(std::string prop, std::string Aelem, std::string Belem)
set a property true
Definition: armor_cluedo.cpp:131
ArmorCluedo::Init
bool Init(std::string ontologyPath)
initizalize the interface
Definition: armor_cluedo.cpp:34
ArmorTools::UpdateOntology
bool UpdateOntology()
send the command REASON
Definition: armor_tools.cpp:246
main
int main(int argc, char *argv[])
Definition: example_armor_cluedo_3.cpp:26
ArmorCluedo
additional utilities for aRMOR
Definition: armor_cluedo.h:56
armor_tools.h
A minimal C++ client for aRMOR.
ArmorCluedo::RemoveHypothesis
bool RemoveHypothesis(std::string hypTag)
discard one hypothesis
Definition: armor_cluedo.cpp:192