Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (c) 2013, SRI International
* All rights reserved.
* Licensed under the The BSD 3-Clause License;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://opensource.org/licenses/BSD-3-Clause
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* Neither the name of the aic-expresso nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.sri.ai.expresso.core;
import static com.sri.ai.expresso.helper.SyntaxTrees.makeCompoundSyntaxTree;
import static com.sri.ai.util.Util.castOrThrowError;
import java.util.LinkedList;
import java.util.List;
import com.google.common.annotations.Beta;
import com.sri.ai.expresso.api.Expression;
import com.sri.ai.expresso.api.ExpressionAndSyntacticContext;
import com.sri.ai.expresso.api.IndexExpressionsSet;
import com.sri.ai.expresso.api.IntensionalSet;
import com.sri.ai.expresso.api.SubExpressionAddress;
import com.sri.ai.expresso.api.SyntaxTree;
import com.sri.ai.expresso.helper.Expressions;
import com.sri.ai.expresso.helper.SyntaxTrees;
import com.sri.ai.grinder.api.Registry;
/**
* A default implementation of a {@link IntensionalSet}.
*
* @author braz
*/
@Beta
public abstract class AbstractIntensionalSet extends AbstractQuantifiedExpression implements IntensionalSet {
private static final long serialVersionUID = 1L;
private Expression head;
private Expression condition;
public AbstractIntensionalSet(IndexExpressionsSet indexExpressions, Expression head, Expression condition) {
super(indexExpressions);
this.head = head;
this.condition = condition;
cachedSubExpressionsAndContext = makeImmediateSubExpressionsAndContexts();
cachedSyntaxTree = makeSyntaxTree();
}
private SyntaxTree makeSyntaxTree() {
IndexExpressionsSet indexExpressions = getIndexExpressions();
SyntaxTree parametersSyntaxTree = indexExpressions.getSubSyntaxTree();
SyntaxTree scopingSyntaxTree = new DefaultCompoundSyntaxTree(IntensionalSet.SCOPED_VARIABLES_LABEL, parametersSyntaxTree);
SyntaxTree headSyntaxTree = getHead().getSyntaxTree();
SyntaxTree conditionSyntaxTree =
(getCondition() == null || getCondition().equals("true"))?
null
: SyntaxTrees.makeCompoundSyntaxTree(IntensionalSet.CONDITION_LABEL, condition.getSyntaxTree());
cachedSyntaxTree = makeCompoundSyntaxTree(getSyntaxTreeLabel(), scopingSyntaxTree, headSyntaxTree, conditionSyntaxTree);
return cachedSyntaxTree;
}
private List makeImmediateSubExpressionsAndContexts() {
cachedSubExpressionsAndContext = new LinkedList();
makeIndexExpressionSubExpressionsAndContext(cachedSubExpressionsAndContext);
cachedSubExpressionsAndContext.add(new DefaultExpressionAndSyntacticContext(getHead(), new HeadAddress(), getIndexExpressions(), getCondition()));
if ( ! getCondition().equals(Expressions.TRUE)) {
cachedSubExpressionsAndContext.add(new DefaultExpressionAndSyntacticContext(getCondition(), new ConditionAddress(), getIndexExpressions(), Expressions.TRUE));
}
return cachedSubExpressionsAndContext;
}
@Override
public Object getSyntacticFormType() {
return IntensionalSet.SYNTACTIC_FORM_TYPE;
}
@Override
public Expression replaceSymbol(Expression symbol, Expression newSymbol, Registry registry) {
IntensionalSet result = this;
IndexExpressionsSet newIndexExpressions = getIndexExpressions().replaceSymbol(symbol, newSymbol, registry);
Expression newHead = getHead().replaceSymbol(symbol, newSymbol, registry);
Expression newCondition = getCondition().replaceSymbol(symbol, newSymbol, registry);
result = replaceIfNeeded(newIndexExpressions, newHead, newCondition);
return result;
}
@Override
public Expression getHead() {
return head;
}
@Override
public Expression getCondition() {
return condition;
}
@Override
public Expression setHead(Expression newHead) {
IntensionalSet result = this;
if (newHead != getHead()) {
result = make(getIndexExpressions(), newHead, getCondition());
}
return result;
}
@Override
public IntensionalSet setCondition(Expression newCondition) {
IntensionalSet result = this;
if (newCondition != getCondition()) {
result = make(getIndexExpressions(), getHead(), newCondition);
}
return result;
}
@Override
public IntensionalSet setHeadAndCondition(Expression newHead, Expression newCondition) {
IntensionalSet result = this;
if (newHead != getHead() || newCondition != getCondition()) {
result = make(getIndexExpressions(), newHead, newCondition);
}
return result;
}
@Override
public IntensionalSet setIndexExpressions(IndexExpressionsSet newIndexExpressions) {
IntensionalSet result = this;
if (newIndexExpressions != getIndexExpressions()) {
result = make(newIndexExpressions, getHead(), getCondition());
}
return result;
}
public IntensionalSet replaceIfNeeded(IndexExpressionsSet newIndexExpressions, Expression newHead, Expression newCondition) {
IntensionalSet result = this;
if (newIndexExpressions != getIndexExpressions() || newHead != getHead() || newCondition != getCondition()) {
result = make(newIndexExpressions, newHead, newCondition);
}
return result;
}
@Override
public Expression clone() {
IntensionalSet result = make(getIndexExpressions(), getHead(), getCondition());
return result;
}
protected static class HeadAddress implements SubExpressionAddress {
@Override
public Expression replace(Expression expression, Expression newHead) {
IntensionalSet intensionalUniSet = castOrThrowError(IntensionalSet.class, expression, "Attempt at replacing head expression of %s which should be an instance of %s but is an instance of %s");
Expression result = intensionalUniSet.setHead(newHead);
return result;
}
@Override
public Expression getSubExpressionOf(Expression expression) {
IntensionalSet intensionalUniSet = castOrThrowError(IntensionalSet.class, expression, "Attempt at replacing head expression of %s which should be an instance of %s but is an instance of %s");
Expression result = intensionalUniSet.getHead();
return result;
}
}
protected static class ConditionAddress implements SubExpressionAddress {
@Override
public Expression replace(Expression expression, Expression newCondition) {
IntensionalSet intensionalSet = castOrThrowError(IntensionalSet.class, expression, "Attempt at obtaining head expression of %s which should be an instance of %s but is an instance of %s");
Expression result = intensionalSet.setCondition(newCondition);
return result;
}
@Override
public Expression getSubExpressionOf(Expression expression) {
IntensionalSet intensionalUniSet = castOrThrowError(IntensionalSet.class, expression, "Attempt at obtaining condition expression of %s which should be an instance of %s but is an instance of %s");
Expression result = intensionalUniSet.getCondition();
return result;
}
}
abstract public String getSyntaxTreeLabel();
@Override
abstract public boolean isUniSet();
@Override
abstract public boolean isMultiSet();
abstract public AbstractIntensionalSet make(IndexExpressionsSet indexExpressions, Expression head, Expression condition);
@Override
public String makeToString() {
String result;
result = getOpeningBrackets() + " ( on " + getIndexExpressions().getSubExpressionString() + " ) " + getHead()
+ (getCondition().equals(Expressions.TRUE)? "" : " : " + getCondition() ) + " " + getClosingBrackets();
return result;
}
abstract protected String getOpeningBrackets();
abstract protected String getClosingBrackets();
}