本文整理汇总了C#中ICondition.addNode方法的典型用法代码示例。如果您正苦于以下问题:C# ICondition.addNode方法的具体用法?C# ICondition.addNode怎么用?C# ICondition.addNode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ICondition
的用法示例。
在下文中一共展示了ICondition.addNode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: attachAlphaNode
/// <summary>
/// For now just attach the node and don't bother with node sharing
/// </summary>
/// <param name="existing">- an existing node in the network. it may be
/// an ObjectTypeNode or AlphaNode</param>
/// <param name="alpha">The alpha.</param>
/// <param name="cond">The cond.</param>
protected internal virtual void attachAlphaNode(BaseAlpha existing, BaseAlpha alpha, ICondition cond)
{
if (alpha != null)
{
try
{
BaseAlpha share = null;
share = shareAlphaNode(existing, alpha);
if (share == null)
{
existing.addSuccessorNode(alpha, ruleCompiler.Engine, ruleCompiler.Memory);
// if the node isn't shared, we Add the node to the Condition
// object the node belongs to.
cond.addNewAlphaNodes(alpha);
}
else if (existing != alpha)
{
// the node is shared, so instead of adding the new node,
// we Add the existing node
share.incrementUseCount();
cond.addNode(share);
ruleCompiler.Memory.removeAlphaMemory(alpha);
if (alpha.successorCount() == 1 && alpha.SuccessorNodes[0] is BaseAlpha)
{
// Get the Current node from the new AlphaNode
BaseAlpha nnext = (BaseAlpha) alpha.SuccessorNodes[0];
attachAlphaNode(share, nnext, cond);
}
}
}
catch (AssertException e)
{
// send an event with the correct error
CompileMessageEventArgs ce = new CompileMessageEventArgs(this, EventType.ADD_NODE_ERROR);
ce.Message = alpha.toPPString();
ruleCompiler.notifyListener(ce);
}
}
}