Beispiel #1
0
 def List_attacking_proposal(self, item):
     """Generate a list of arguments which can be used to attack an item
     :param item: Item - name of the item
     :return: list of all arguments CON an item (sorted by order of importance based on preferences)
     """
     argument = Argument(boolean_decision=False, item=item)
     pref = self.get_preference()
     criterion_value_list = pref.get_criterion_value_list()
     for elt in criterion_value_list:
         if elt.get_item() == item:
             if elt.get_value().name == 'BAD' or elt.get_value(
             ).name == 'VERY_BAD':
                 argument.add_premiss_couple_values(
                     elt.get_criterion_name(), elt.get_value())
     return argument.get_couple_values_list()
Beispiel #2
0
        def criterion_argument(premiss: CoupleValue, engine: Item, interlocutor_id: str) -> \
                Union[Argument, None]:
            """
            Try to return a counter argument that is built on the fact that the agent has found a criterion for which
            the value for the engine is not good and the criterion is ranked higher in the list of preferences of the
            agent compared to the one mentioned in the premiss.

            :param premiss: CoupleValue - the premiss used by the agent with the identifier: interlocutor_id
            :param engine: Item - The engine that is currently being discussed by the two agents
            :param interlocutor_id: str - The identifier of the agent that has proposed the argument object.

            :return: Possibly a counter argument to the one proposed by the agent with the identifier: interlocutor_id.
            """
            bad_criteria = Argument.list_attacking_proposal(
                engine, self.preference)
            base_criterion = premiss.get_criterion_name()

            # We iterate through our possible counter arguments to find if we could use one of them
            for criterion_name, criterion_val in bad_criteria:

                if self.preference.is_preferred_criterion(
                        criterion_name,
                        base_criterion) and base_criterion != criterion_name:
                    argument = Argument(False, engine)
                    # One has to remember that list_attacking_proposal and list_proposal both return a tuple of
                    # the form (preference, value)
                    argument.add_premiss_couple_values(criterion_name,
                                                       criterion_val)
                    argument.add_premiss_comparison(
                        criterion_name, premiss.get_criterion_name())

                    if not self._negotiations.is_argument_already_used(
                            self.get_name(), interlocutor_id, argument):
                        return argument
            return None
Beispiel #3
0
    def add_argument(self, agent_1: str, agent_2: str, argument: Argument):
        """
        This function aims to add an argument that has been mentioned by agent_1 during the negotiation process.

        Params:
             - agent_1 (int): The identifier of the agent who proposed the argument
             - agent_2 (int): The identifier of the agent involved in the negotiation process for which the argument was
             proposed.
             - argument (Argument): The argument that has been advanced by agent_1

        """
        tuple_ = Negotiation._get_tuple(agent_1, agent_2)
        conclusion, _ = Argument.argument_parsing(argument)

        self._negotiations[tuple_]["arguments"].append((agent_1, argument))
 def generate_arguments(self, item, is_positive):
     """Generates an argument given an item.
     """
     arguments = []
     binary_score = self.__preferences.compute_item_binary_score(item)
     criterion_order = self.__preferences.get_criterion_order()
     if is_positive:
         requested_score = "1"
     else:
         requested_score = "0"
     for k, criterion_name in enumerate(criterion_order):
         if binary_score[k] == requested_score:
             criterion_value = self.__preferences.get_criterion_value(
                 criterion_name, item)
             couple = Couple(criterion_name, criterion_value)
             argument = Argument(item, is_positive, [couple])
             if argument not in self.__used_arguments:
                 arguments.append(argument)
     return arguments
Beispiel #5
0
            Agent1.remove_item(item)
            print("Items of Agent1 are: " +
                  str([i.get_name() for i in Agent1.get_item_list()]))
            print("Items of Agent2 are: " +
                  str([i.get_name() for i in Agent2.get_item_list()]))
            Agent2.remove_item(item)
            print("Items of Agent1 are: " +
                  str([i.get_name() for i in Agent1.get_item_list()]))
            print("Items of Agent2 are: " +
                  str([i.get_name() for i in Agent2.get_item_list()]))
            print(Agent2.get_item_list())
        else:
            print("Errror : item not in list")
    else:
        #on commence à construire l'argumentation autour de l'item
        argument_Agent1 = Argument(True, item)
        argument_Agent2 = Argument(False, item)
        for elt in Agent1.List_supporting_proposal(item):
            argument_Agent1.add_premiss_couple_values(elt.get_criterion_name(),
                                                      elt.get_value())
        for elt in Agent2.List_supporting_proposal(item):
            argument_Agent2.add_premiss_couple_values(elt.get_criterion_name(),
                                                      elt.get_value())

        m3 = Message("Agent1", "Agent2", MessagePerformative.ARGUE,
                     (item.get_name(), Agent1.support_proposal(item)))
        print("Third message is : " + Agent1.argument_parsing(item))
        mailbox.receive_messages(m3)
        can_be_attacked = Agent2.can_be_attacked(Agent1.support_proposal, item)
        if can_be_attacked:
            #l'autre agent n'est pas d'accord
Beispiel #6
0
    def try_get_counter_argument(self, argument: 'Argument', interlocutor_id: str) \
            -> Union['Argument', Message, None]:
        """
        Try to create an argument to counter the argument object that has been proposed by an agent.
        :param argument: Argument - the argument for which we would like to create a counter one.
        :param interlocutor_id: str - the identifier of the agent that has proposed the argument

        :return: this function may return an argument to counter the one proposed by the agent with the identifier:
        interlocutor_id. This counter argument can take the form of a message if the agent proposes its preferred_engine.
        """

        def criterion_argument(premiss: CoupleValue, engine: Item, interlocutor_id: str) -> \
                Union[Argument, None]:
            """
            Try to return a counter argument that is built on the fact that the agent has found a criterion for which
            the value for the engine is not good and the criterion is ranked higher in the list of preferences of the
            agent compared to the one mentioned in the premiss.

            :param premiss: CoupleValue - the premiss used by the agent with the identifier: interlocutor_id
            :param engine: Item - The engine that is currently being discussed by the two agents
            :param interlocutor_id: str - The identifier of the agent that has proposed the argument object.

            :return: Possibly a counter argument to the one proposed by the agent with the identifier: interlocutor_id.
            """
            bad_criteria = Argument.list_attacking_proposal(
                engine, self.preference)
            base_criterion = premiss.get_criterion_name()

            # We iterate through our possible counter arguments to find if we could use one of them
            for criterion_name, criterion_val in bad_criteria:

                if self.preference.is_preferred_criterion(
                        criterion_name,
                        base_criterion) and base_criterion != criterion_name:
                    argument = Argument(False, engine)
                    # One has to remember that list_attacking_proposal and list_proposal both return a tuple of
                    # the form (preference, value)
                    argument.add_premiss_couple_values(criterion_name,
                                                       criterion_val)
                    argument.add_premiss_comparison(
                        criterion_name, premiss.get_criterion_name())

                    if not self._negotiations.is_argument_already_used(
                            self.get_name(), interlocutor_id, argument):
                        return argument
            return None

        def criterion_value(premiss: CoupleValue, interlocutor_id: str, better_value: bool, engine: Item = None) -> \
                Union[Argument, None]:
            """
            Try to return a counter argument that is built either on the fact that the agent has found that its preferred
            engine has a better value for the criterion mentioned in the premiss used by its interlocutor or because the
            engine that is currently being discussed has a value that is worst than the one mentioned in the premiss.

            :param premiss: CoupleValue - the premiss used by the agent with the identifier: interlocutor_id
            :param interlocutor_id: int - The identifier of the agent that has proposed the argument object.
            :param better_value: str - A boolean to determine which approach to use.
            :param engine: Item - The engine currently being discussed.

            :return: Possibly a counter argument to the one proposed by the agent with the identifier: interlocutor_id.
            """
            argument = None
            preferred_engine = self.preference.most_preferred(self._engines)
            value_for_criterion = self.preference.get_criterion_value_for_item(
                preferred_engine if better_value else engine)[
                    premiss.get_criterion_name()]

            if better_value:
                if value_for_criterion > premiss.get_value():
                    argument = Argument(True, preferred_engine)
                    argument.add_premiss_couple_values(
                        premiss.get_criterion_name(), value_for_criterion)
                    argument.add_premiss_comparison(value_for_criterion,
                                                    premiss.get_value())
            else:
                assert engine is not None, "You forgot to specify the engine!"
                if value_for_criterion < premiss.get_value():
                    argument = Argument(False, engine)
                    argument.add_premiss_couple_values(
                        premiss.get_criterion_name(), value_for_criterion)
                    argument.add_premiss_comparison(premiss.get_value(),
                                                    value_for_criterion)

            if argument and self._negotiations.is_argument_already_used(
                    self.get_name(), interlocutor_id, argument):
                return None

            return argument

        conclusion, premisses = Argument.argument_parsing(argument)
        most_preferred_engine = self.preference.most_preferred(self._engines)

        # Getting engine mentioned in the argument
        engine = conclusion[1]

        # Checking if the argument was in favor of a specific engine or not
        if conclusion[0]:
            premiss_cp: CoupleValue = premisses[0]

            # We try to find a criterion that has a higher rank in our table of preferences and prove that the value
            # is not great
            counter_argument = criterion_argument(premiss_cp, engine,
                                                  interlocutor_id)
            if counter_argument:
                return counter_argument

            # Otherwise we could counter this argument by mentioning that for us this engine is not great for this
            # criterion
            counter_argument = criterion_value(premiss_cp,
                                               interlocutor_id,
                                               better_value=False,
                                               engine=engine)
            if counter_argument:
                return counter_argument

            # Another possibility is to propose our preferred engine if it has not already been mentioned
            if self._negotiations.has_engine_been_proposed(
                    self.get_name(), interlocutor_id, most_preferred_engine):

                # Otherwise we could search for a criterion that will justify the choice of our preferred engine
                counter_argument = criterion_value(premiss_cp,
                                                   interlocutor_id,
                                                   better_value=True)
                if counter_argument:
                    return counter_argument
            else:
                # We register our engine
                self._negotiations.add_engine(self.get_name(), interlocutor_id,
                                              most_preferred_engine)

                return Message(self.get_name(), interlocutor_id,
                               MessagePerformative.PROPOSE,
                               most_preferred_engine)

        else:
            # First we need to get the comparison used by the other agent
            comparison: Comparison = premisses[1]

            # Getting proposals that we could use to defend our engine
            proposals = Argument.list_supporting_proposal(
                engine, self.preference)

            # Then we need to check if the comparison is based on criterion
            if type(comparison.get_best_criterion_name()) == CriterionName:
                # Now we will iterate through the proposals to find one that we could be used to counter the argument
                # used the other agent
                base_criterion = comparison.get_best_criterion_name()

                # We iterate through our possible counter arguments to find if we could use one of them
                for criterion_name, criterion_val in proposals:
                    # We check if the criterion that the criterion mentioned by the other agent
                    if self.preference.is_preferred_criterion(
                            criterion_name, base_criterion
                    ) and criterion_name != base_criterion:
                        argument = Argument(True, engine)
                        # One has to remember that list_attacking_proposal and list_proposal both return a tuple of
                        # the form (preference, value)
                        argument.add_premiss_couple_values(
                            criterion_name, criterion_val)
                        argument.add_premiss_comparison(
                            criterion_name, base_criterion)

                        return argument

            # Otherwise we will try to find a criterion that has not been used yet
            for criterion_name, criterion_val in proposals:
                argument = Argument(True, engine)
                argument.add_premiss_couple_values(criterion_name,
                                                   criterion_val)

                # We check if the argument has been used in the negotiation
                if not self._negotiations.is_argument_already_used(
                        self.get_name(), interlocutor_id, argument):
                    return argument

        return None
Beispiel #7
0
    def step(self):
        # Get a list of interlocutors with which the agent can talk about engines
        engines_interlocutors = self._df.get_agents_with_specific_role(
            self.get_name(), Role.EnginesTalker)

        # We then iterate through the messages
        new_messages = self.get_new_messages()

        for message in new_messages:
            # We retrieve the expeditor
            expeditor = message.get_exp()

            # We have to ensure that the negotiation with expeditor is still ongoing
            if self._negotiations.is_negotiation_ended(self.get_name(),
                                                       expeditor):
                return

            # We now check the performative of the message and answer
            performative = message.get_performative()

            if performative == MessagePerformative.PROPOSE:
                # We get the engine proposed by an agent
                engine = message.get_content()

                # We check if the engine proposed is one of our preferred ones
                if self.preference.is_item_among_top_10_percent(
                        engine, self._engines):
                    # We then need to check if the engine is our preferred one
                    most_preferred_engine = self.preference.most_preferred(
                        self._engines)

                    if most_preferred_engine.get_name() == engine.get_name():
                        self.send_message(
                            Message(self.get_name(), expeditor,
                                    MessagePerformative.ACCEPT, engine))
                    else:
                        if self._negotiations.has_engine_been_proposed(
                                self.get_name(), expeditor,
                                most_preferred_engine):
                            # If the most preferred engine has been proposed,
                            # the agent will ask why the other agent proposed this engine
                            self.send_message(
                                Message(self.get_name(), expeditor,
                                        MessagePerformative.ASK_WHY, engine))
                        else:
                            # We register our engine
                            self._negotiations.add_engine(
                                self.get_name(), expeditor,
                                most_preferred_engine)

                            self.send_message(
                                Message(self.get_name(), expeditor,
                                        MessagePerformative.PROPOSE,
                                        most_preferred_engine))
                else:
                    # Otherwise the agent will ask why the other agent proposed this engine
                    self.send_message(
                        Message(self.get_name(), expeditor,
                                MessagePerformative.ASK_WHY, engine))
            elif performative == MessagePerformative.ASK_WHY:
                # We get the engine proposed by an agent
                engine = message.get_content()

                # We send a message with commit performative
                argument = Argument(True, engine)
                argument.add_premiss_couple_values(
                    *Argument.support_proposal(engine, self.preference))

                # Keeping argument in memory
                self._negotiations.add_argument(self.get_name(), expeditor,
                                                argument)

                self.send_message(
                    Message(self.get_name(), expeditor,
                            MessagePerformative.ARGUE, argument))
            elif performative == MessagePerformative.ARGUE:
                # Getting the argument used by the other agent.
                argument: Argument = message.get_content()

                # Trying to get a counter argument
                resp = self.try_get_counter_argument(argument, expeditor)

                # Checking if the result of the previous function call is of type Message
                if type(resp) == Message:
                    self.send_message(resp)
                    return

                # Now we check if we have a counter_argument
                if not resp:
                    # If the conclusion of the argument is in favor of a specific engine we have to accept it
                    if Argument.argument_parsing(argument)[0][0]:
                        self.send_message(
                            Message(self.get_name(), expeditor,
                                    MessagePerformative.ACCEPT,
                                    Argument.argument_parsing(argument)[0][1]))
                    else:
                        # We have to accept the engine of the other agent as the current agent was not able to propose
                        # another argument in favor of its most preferred engine.

                        # We try to get the engine mentioned by the other interlocutor
                        engine_ = self._negotiations.get_engine_proposed_by_interlocutor(
                            self.get_name(), expeditor)
                        if engine_:
                            self.send_message(
                                Message(self.get_name(), expeditor,
                                        MessagePerformative.ACCEPT, engine_))
                        else:
                            # If this engine has not been discussed during the negotiation,
                            # we have to ask the interlocutor
                            self.send_message(
                                Message(self.get_name(), expeditor,
                                        MessagePerformative.QUERY_REF,
                                        "engine"))
                    return

                # Adding counter argument in our list of arguments used for negotiation
                self._negotiations.add_argument(self.get_name(), expeditor,
                                                resp)

                # Sending counter argument
                self.send_message(
                    Message(self.get_name(), expeditor,
                            MessagePerformative.ARGUE, resp))
            elif performative == MessagePerformative.ACCEPT:
                # We get the engine proposed by an agent
                engine = message.get_content()

                # We save in memory the engine that has been accepted by the two agents
                self._negotiations.set_accepted_engine(self.get_name(),
                                                       expeditor, engine)

                # We send a message with commit performative
                self.send_message(
                    Message(self.get_name(), expeditor,
                            MessagePerformative.COMMIT, engine))
            elif performative == MessagePerformative.COMMIT:
                # We get the engine that we are talking about
                engine = message.get_content()

                # The agent indicates that he/she is ok to end the negotiation
                self._negotiations.accept_ending_negotiation(
                    self.get_name(), expeditor)

                # We have to check if the other agent has agreed to end the negotiation too
                if not self._negotiations.is_negotiation_ended(
                        self.get_name(), expeditor):
                    self.send_message(
                        Message(self.get_name(), expeditor,
                                MessagePerformative.COMMIT, engine))
            elif performative == MessagePerformative.QUERY_REF:
                self.send_message(
                    Message(self.get_name(), expeditor,
                            MessagePerformative.INFORM_REF,
                            self.preference.most_preferred(self._engines)))
            elif performative == MessagePerformative.INFORM_REF:
                engine = message.get_content()

                self.send_message(
                    Message(self.get_name(), expeditor,
                            MessagePerformative.ACCEPT, engine))

            # We indicate that the agent has now treated its business with the expeditor agent
            engines_interlocutors.remove(expeditor)

        # We now iterate through the list of interlocutors for which we have not received a message
        for interlocutor_id in engines_interlocutors:
            # We check if a _negotiation has already started between the two agents
            if not self._negotiations.has_started_negotiation(
                    self.get_name(), interlocutor_id):
                # If it's not the case, we initiate a negotiation between the two agents
                self._negotiations.start_negotiation(self.get_name(),
                                                     interlocutor_id)

                # We retrieve our most preferred engine
                most_preferred_engine = self.preference.most_preferred(
                    self._engines)

                # We have to register our preferred engine
                self._negotiations.add_engine(self.get_name(), interlocutor_id,
                                              most_preferred_engine)

                # The current agent will propose his/her best engine based on his/her preferences
                self.send_message(
                    Message(self.get_name(), interlocutor_id,
                            MessagePerformative.PROPOSE,
                            most_preferred_engine))
Beispiel #8
0
        def criterion_value(premiss: CoupleValue, interlocutor_id: str, better_value: bool, engine: Item = None) -> \
                Union[Argument, None]:
            """
            Try to return a counter argument that is built either on the fact that the agent has found that its preferred
            engine has a better value for the criterion mentioned in the premiss used by its interlocutor or because the
            engine that is currently being discussed has a value that is worst than the one mentioned in the premiss.

            :param premiss: CoupleValue - the premiss used by the agent with the identifier: interlocutor_id
            :param interlocutor_id: int - The identifier of the agent that has proposed the argument object.
            :param better_value: str - A boolean to determine which approach to use.
            :param engine: Item - The engine currently being discussed.

            :return: Possibly a counter argument to the one proposed by the agent with the identifier: interlocutor_id.
            """
            argument = None
            preferred_engine = self.preference.most_preferred(self._engines)
            value_for_criterion = self.preference.get_criterion_value_for_item(
                preferred_engine if better_value else engine)[
                    premiss.get_criterion_name()]

            if better_value:
                if value_for_criterion > premiss.get_value():
                    argument = Argument(True, preferred_engine)
                    argument.add_premiss_couple_values(
                        premiss.get_criterion_name(), value_for_criterion)
                    argument.add_premiss_comparison(value_for_criterion,
                                                    premiss.get_value())
            else:
                assert engine is not None, "You forgot to specify the engine!"
                if value_for_criterion < premiss.get_value():
                    argument = Argument(False, engine)
                    argument.add_premiss_couple_values(
                        premiss.get_criterion_name(), value_for_criterion)
                    argument.add_premiss_comparison(premiss.get_value(),
                                                    value_for_criterion)

            if argument and self._negotiations.is_argument_already_used(
                    self.get_name(), interlocutor_id, argument):
                return None

            return argument
Beispiel #9
0
    item = Item("Electric Engine", "An engine that works with electricity")
    negotiations = Negotiation(agents)

    # Testing structure of the dictionary
    dict_ = negotiations._negotiations
    assert len(list(dict_.keys())) == len(agents)

    print("[INFO] Structure of the dictionary is correct ... OK!")
    # Trying to start a negotiation
    negotiations.start_negotiation(agents[0], agents[1])

    assert dict_[(agents[0], agents[1])]["initiator"] == agents[0]
    print("[INFO] Starting a negotiation with Alice... OK!")

    # Trying to add an argument
    argument_1 = Argument(False, item)
    argument_1.add_premiss_couple_values(CriterionName.ENVIRONMENT_IMPACT,
                                         Value.VERY_BAD)

    argument_2 = Argument(False, item)
    argument_2.add_premiss_couple_values(CriterionName.ENVIRONMENT_IMPACT,
                                         Value.VERY_BAD)
    argument_2.add_premiss_comparison(CriterionName.ENVIRONMENT_IMPACT,
                                      CriterionName.CONSUMPTION)

    negotiations.add_argument(agents[0], agents[1], argument_1)
    negotiations.add_argument(agents[0], agents[1], argument_2)

    assert len(dict_[(agents[0], agents[1])]["arguments"])
    print("[INFO] Adding an argument to the list... OK!")