Search in sources :

Example 1 with RESULT

use of com.sri.ai.util.explanation.logging.api.ThreadExplanationLogger.RESULT in project aic-expresso by aic-sri-international.

the class Context method extendWith.

/**
 * Extends context with index expressions, taking into account that new contextual variables may collide with existing ones.
 * In this case, it renames the incoming variables to unique identifiers and replaces them in the types of remaining
 * index expressions. It also renames these indices if they occur in a given expression --
 * this is useful because the client code (invoking this method)
 * often knows that these renamed indices may occur in a known set of expressions that need to be updated accordingly.
 * Returns the new context, the index expressions and expression in scope after the renaming.
 * @param indexExpressions
 * @param expressionInScope
 * @return the new context and the index expressions and expression in scope after the renaming
 */
default Triple<Context, ExtensionalIndexExpressionsSet, Expression> extendWith(ExtensionalIndexExpressionsSet indexExpressions, Expression expressionInScope) {
    Triple<Context, ExtensionalIndexExpressionsSet, Expression> result;
    if (thereExists(getIndices(indexExpressions), index -> this.containsSymbol(index))) {
        // OPTIMIZATION: only kick in this entire procedure when extending with symbol in the context (previous ones could have been dealt with normally).
        // the objects to be returned in the triple:
        Context newContext = this;
        ArrayList<Expression> newIndexExpressionsList = new ArrayList<>(indexExpressions.getList());
        Expression newExpressionInScope = expressionInScope;
        // Collects all existing symbols to be able to create unique symbols
        Set<Expression> alreadyDefined = Util.set();
        alreadyDefined.addAll(this.getSymbols());
        alreadyDefined.addAll(Expressions.freeSymbols(new DefaultTuple(newIndexExpressionsList), this));
        alreadyDefined.addAll(Expressions.freeSymbols(expressionInScope, this));
        Predicate<Expression> isAlreadyDefined = e -> alreadyDefined.contains(e);
        for (int i = 0; i != newIndexExpressionsList.size(); i++) {
            Expression indexExpression = newIndexExpressionsList.get(i);
            Expression index = indexExpression.get(0);
            Expression type = indexExpression.get(1);
            PairOf<Expression> newIndexAndNewExpressionInScope = Expressions.standardizeApart(index, isAlreadyDefined, newExpressionInScope);
            Expression newIndex = newIndexAndNewExpressionInScope.first;
            newExpressionInScope = newIndexAndNewExpressionInScope.second;
            // type should not contain the index
            Expression newIndexExpression = apply(IN, newIndex, type);
            newIndexExpressionsList.set(i, newIndexExpression);
            alreadyDefined.add(newIndex);
            for (int j = i + 1; j != newIndexExpressionsList.size(); j++) {
                Expression anotherIndexExpression = newIndexExpressionsList.get(j);
                myAssert(anotherIndexExpression.hasFunctor(FunctorConstants.IN), () -> "Expected index expression 'SYMBOL in TYPE' but got instead " + anotherIndexExpression);
                Expression anotherIndex = anotherIndexExpression.get(0);
                Expression anotherType = anotherIndexExpression.get(1);
                Expression newAnotherType = anotherType.replaceSymbol(index, newIndex, this);
                // anotherIndex is a symbols and does not contain index
                Expression newAnotherIndexExpression = apply(IN, anotherIndex, newAnotherType);
                newIndexExpressionsList.set(j, newAnotherIndexExpression);
            }
        }
        ExtensionalIndexExpressionsSet newIndexExpressions = new ExtensionalIndexExpressionsSet(newIndexExpressionsList);
        newContext = newContext.extendWith(newIndexExpressions);
        result = triple(newContext, newIndexExpressions, newExpressionInScope);
    } else {
        // no collision; usual extension and the expressions do not change.
        result = triple(extendWith(indexExpressions), indexExpressions, expressionInScope);
    }
    return result;
}
Also used : Triple(com.sri.ai.util.base.Triple) ThreadExplanationLogger.explanationBlock(com.sri.ai.util.explanation.logging.api.ThreadExplanationLogger.explanationBlock) Expressions(com.sri.ai.expresso.helper.Expressions) PairOf(com.sri.ai.util.base.PairOf) Expression(com.sri.ai.expresso.api.Expression) Triple.triple(com.sri.ai.util.base.Triple.triple) ArrayList(java.util.ArrayList) ExtensionalIndexExpressionsSet(com.sri.ai.expresso.core.ExtensionalIndexExpressionsSet) Expressions.apply(com.sri.ai.expresso.helper.Expressions.apply) IN(com.sri.ai.grinder.library.FunctorConstants.IN) IndexExpressions.getIndices(com.sri.ai.grinder.library.indexexpression.IndexExpressions.getIndices) Map(java.util.Map) IndexExpressionsSet(com.sri.ai.expresso.api.IndexExpressionsSet) Util.thereExists(com.sri.ai.util.Util.thereExists) Type(com.sri.ai.expresso.api.Type) Collection(java.util.Collection) Set(java.util.Set) Util.mapIntoList(com.sri.ai.util.Util.mapIntoList) DefaultTuple(com.sri.ai.expresso.core.DefaultTuple) Beta(com.google.common.annotations.Beta) List(java.util.List) Predicate(com.google.common.base.Predicate) Util.myAssert(com.sri.ai.util.Util.myAssert) ThreadExplanationLogger.code(com.sri.ai.util.explanation.logging.api.ThreadExplanationLogger.code) Util(com.sri.ai.util.Util) FunctorConstants(com.sri.ai.grinder.library.FunctorConstants) RESULT(com.sri.ai.util.explanation.logging.api.ThreadExplanationLogger.RESULT) ExtensionalIndexExpressionsSet(com.sri.ai.expresso.core.ExtensionalIndexExpressionsSet) Expression(com.sri.ai.expresso.api.Expression) ArrayList(java.util.ArrayList) DefaultTuple(com.sri.ai.expresso.core.DefaultTuple)

Aggregations

Beta (com.google.common.annotations.Beta)1 Predicate (com.google.common.base.Predicate)1 Expression (com.sri.ai.expresso.api.Expression)1 IndexExpressionsSet (com.sri.ai.expresso.api.IndexExpressionsSet)1 Type (com.sri.ai.expresso.api.Type)1 DefaultTuple (com.sri.ai.expresso.core.DefaultTuple)1 ExtensionalIndexExpressionsSet (com.sri.ai.expresso.core.ExtensionalIndexExpressionsSet)1 Expressions (com.sri.ai.expresso.helper.Expressions)1 Expressions.apply (com.sri.ai.expresso.helper.Expressions.apply)1 FunctorConstants (com.sri.ai.grinder.library.FunctorConstants)1 IN (com.sri.ai.grinder.library.FunctorConstants.IN)1 IndexExpressions.getIndices (com.sri.ai.grinder.library.indexexpression.IndexExpressions.getIndices)1 Util (com.sri.ai.util.Util)1 Util.mapIntoList (com.sri.ai.util.Util.mapIntoList)1 Util.myAssert (com.sri.ai.util.Util.myAssert)1 Util.thereExists (com.sri.ai.util.Util.thereExists)1 PairOf (com.sri.ai.util.base.PairOf)1 Triple (com.sri.ai.util.base.Triple)1 Triple.triple (com.sri.ai.util.base.Triple.triple)1 RESULT (com.sri.ai.util.explanation.logging.api.ThreadExplanationLogger.RESULT)1