Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataEntity / System / Data / Common / Utils / Boolean / NegationPusher.cs / 1 / NegationPusher.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Text; using System.Diagnostics; using System.Linq; namespace System.Data.Common.Utils.Boolean { // Top-down push-down of negation in Boolean expressions. // - !(A or B) iff. !A and !B // - !(A and B) iff. !A or !B // - !!A iff. A // Uses two visitor classes: one to handle negated subtrees (essentially creates // an inverted tree) and one to handle non-negated subtrees (replicates until it // encounters NotExpr) internal static class NegationPusher { internal static BoolExpr> EliminateNot (BoolExpr > expression) { return expression.Accept(NonNegatedDomainConstraintTreeVisitor .Instance); } private class NonNegatedTreeVisitor : BasicVisitor { internal static readonly NonNegatedTreeVisitor Instance = new NonNegatedTreeVisitor (); protected NonNegatedTreeVisitor() { } internal override BoolExpr VisitNot(NotExpr expression) { return expression.Child.Accept(NegatedTreeVisitor .Instance); } } private class NegatedTreeVisitor : Visitor > { internal static readonly NegatedTreeVisitor Instance = new NegatedTreeVisitor (); protected NegatedTreeVisitor() { } internal override BoolExpr VisitTrue(TrueExpr expression) { return FalseExpr .Value; } internal override BoolExpr VisitFalse(FalseExpr expression) { return TrueExpr .Value; } internal override BoolExpr VisitTerm(TermExpr expression) { return new NotExpr (expression); } internal override BoolExpr VisitNot(NotExpr expression) { return expression.Child.Accept(NonNegatedTreeVisitor .Instance); } internal override BoolExpr VisitAnd(AndExpr expression) { return new OrExpr (expression.Children.Select(child => child.Accept(this))); } internal override BoolExpr VisitOr(OrExpr expression) { return new AndExpr (expression.Children.Select(child => child.Accept(this))); } } private class NonNegatedDomainConstraintTreeVisitor : NonNegatedTreeVisitor > { internal new static readonly NonNegatedDomainConstraintTreeVisitor Instance = new NonNegatedDomainConstraintTreeVisitor (); private NonNegatedDomainConstraintTreeVisitor() { } internal override BoolExpr > VisitNot(NotExpr > expression) { return expression.Child.Accept(NegatedDomainConstraintTreeVisitor .Instance); } } private class NegatedDomainConstraintTreeVisitor : NegatedTreeVisitor > { internal new static readonly NegatedDomainConstraintTreeVisitor Instance = new NegatedDomainConstraintTreeVisitor (); private NegatedDomainConstraintTreeVisitor() { } internal override BoolExpr > VisitNot(NotExpr > expression) { return expression.Child.Accept(NonNegatedDomainConstraintTreeVisitor .Instance); } internal override BoolExpr > VisitTerm(TermExpr > expression) { return new TermExpr >(expression.Identifier.InvertDomainConstraint()); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Text; using System.Diagnostics; using System.Linq; namespace System.Data.Common.Utils.Boolean { // Top-down push-down of negation in Boolean expressions. // - !(A or B) iff. !A and !B // - !(A and B) iff. !A or !B // - !!A iff. A // Uses two visitor classes: one to handle negated subtrees (essentially creates // an inverted tree) and one to handle non-negated subtrees (replicates until it // encounters NotExpr) internal static class NegationPusher { internal static BoolExpr> EliminateNot (BoolExpr > expression) { return expression.Accept(NonNegatedDomainConstraintTreeVisitor .Instance); } private class NonNegatedTreeVisitor : BasicVisitor { internal static readonly NonNegatedTreeVisitor Instance = new NonNegatedTreeVisitor (); protected NonNegatedTreeVisitor() { } internal override BoolExpr VisitNot(NotExpr expression) { return expression.Child.Accept(NegatedTreeVisitor .Instance); } } private class NegatedTreeVisitor : Visitor > { internal static readonly NegatedTreeVisitor Instance = new NegatedTreeVisitor (); protected NegatedTreeVisitor() { } internal override BoolExpr VisitTrue(TrueExpr expression) { return FalseExpr .Value; } internal override BoolExpr VisitFalse(FalseExpr expression) { return TrueExpr .Value; } internal override BoolExpr VisitTerm(TermExpr expression) { return new NotExpr (expression); } internal override BoolExpr VisitNot(NotExpr expression) { return expression.Child.Accept(NonNegatedTreeVisitor .Instance); } internal override BoolExpr VisitAnd(AndExpr expression) { return new OrExpr (expression.Children.Select(child => child.Accept(this))); } internal override BoolExpr VisitOr(OrExpr expression) { return new AndExpr (expression.Children.Select(child => child.Accept(this))); } } private class NonNegatedDomainConstraintTreeVisitor : NonNegatedTreeVisitor > { internal new static readonly NonNegatedDomainConstraintTreeVisitor Instance = new NonNegatedDomainConstraintTreeVisitor (); private NonNegatedDomainConstraintTreeVisitor() { } internal override BoolExpr > VisitNot(NotExpr > expression) { return expression.Child.Accept(NegatedDomainConstraintTreeVisitor .Instance); } } private class NegatedDomainConstraintTreeVisitor : NegatedTreeVisitor > { internal new static readonly NegatedDomainConstraintTreeVisitor Instance = new NegatedDomainConstraintTreeVisitor (); private NegatedDomainConstraintTreeVisitor() { } internal override BoolExpr > VisitNot(NotExpr > expression) { return expression.Child.Accept(NonNegatedDomainConstraintTreeVisitor .Instance); } internal override BoolExpr > VisitTerm(TermExpr > expression) { return new TermExpr >(expression.Identifier.InvertDomainConstraint()); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SoapServerMessage.cs
- AdapterUtil.cs
- HttpModuleAction.cs
- DataGridHyperlinkColumn.cs
- BooleanProjectedSlot.cs
- cryptoapiTransform.cs
- SourceFileInfo.cs
- EventRecordWrittenEventArgs.cs
- ProfilePropertyNameValidator.cs
- InvalidDataException.cs
- HashCodeCombiner.cs
- WebBrowserProgressChangedEventHandler.cs
- _Rfc2616CacheValidators.cs
- OneOf.cs
- TextBox.cs
- ServicesUtilities.cs
- UIElementHelper.cs
- DependencyPropertyValueSerializer.cs
- DataSourceView.cs
- SendReply.cs
- CommandManager.cs
- ToolStripSeparatorRenderEventArgs.cs
- IconHelper.cs
- ColorDialog.cs
- CookieParameter.cs
- ItemCollectionEditor.cs
- TypeNameConverter.cs
- SQLInt64Storage.cs
- ModifierKeysConverter.cs
- MiniCustomAttributeInfo.cs
- Models.cs
- TraceEventCache.cs
- IdentitySection.cs
- dtdvalidator.cs
- ClientScriptManager.cs
- RemotingAttributes.cs
- XmlIlGenerator.cs
- BlockCollection.cs
- _DigestClient.cs
- EpmContentSerializer.cs
- BitmapVisualManager.cs
- ExtensionQuery.cs
- MaskDesignerDialog.cs
- IndexedWhereQueryOperator.cs
- CodeSubDirectoriesCollection.cs
- XPathAncestorIterator.cs
- TemplateEditingVerb.cs
- PersonalizationStateQuery.cs
- XpsInterleavingPolicy.cs
- AdjustableArrowCap.cs
- ObjectKeyFrameCollection.cs
- EnumCodeDomSerializer.cs
- EdmScalarPropertyAttribute.cs
- AmbientLight.cs
- TraceHandlerErrorFormatter.cs
- RequestQueue.cs
- DrawingAttributeSerializer.cs
- File.cs
- CacheEntry.cs
- CodeDirectoryCompiler.cs
- ObjectKeyFrameCollection.cs
- NominalTypeEliminator.cs
- Clipboard.cs
- HttpCapabilitiesEvaluator.cs
- TraceHandlerErrorFormatter.cs
- DataServiceBuildProvider.cs
- PersonalizationProviderHelper.cs
- PageBreakRecord.cs
- DataGridViewCellStateChangedEventArgs.cs
- DiscoveryServiceExtension.cs
- WebBrowsableAttribute.cs
- Regex.cs
- HGlobalSafeHandle.cs
- DataGridPageChangedEventArgs.cs
- PropertyRecord.cs
- CaretElement.cs
- StorageRoot.cs
- Decorator.cs
- SqlDeflator.cs
- Object.cs
- QueryRewriter.cs
- CqlWriter.cs
- OdbcFactory.cs
- UnSafeCharBuffer.cs
- StringAttributeCollection.cs
- SizeLimitedCache.cs
- ElementAction.cs
- DefaultPropertyAttribute.cs
- PointCollection.cs
- DbConnectionPoolGroupProviderInfo.cs
- Currency.cs
- DbgCompiler.cs
- AutomationPattern.cs
- XmlReflectionImporter.cs
- Helpers.cs
- DocumentPage.cs
- XmlSerializerNamespaces.cs
- GeometryDrawing.cs
- OpCellTreeNode.cs
- HostedBindingBehavior.cs