Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataEntity / System / Data / Common / Utils / Boolean / NegationPusher.cs / 2 / 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
- OleDbParameterCollection.cs
- InfoCardRSAOAEPKeyExchangeDeformatter.cs
- RootBrowserWindowProxy.cs
- SelectionRange.cs
- SvcMapFile.cs
- PerformanceCountersElement.cs
- AsymmetricSignatureDeformatter.cs
- TempEnvironment.cs
- CompilerInfo.cs
- Translator.cs
- ToolBarButtonClickEvent.cs
- SystemPens.cs
- XamlPathDataSerializer.cs
- Composition.cs
- ViewCellSlot.cs
- XmlBufferReader.cs
- ResXDataNode.cs
- TextServicesContext.cs
- SafeLibraryHandle.cs
- ElementHostAutomationPeer.cs
- ProfileManager.cs
- _UriTypeConverter.cs
- DbConnectionHelper.cs
- DbTransaction.cs
- SqlCachedBuffer.cs
- ArraySet.cs
- UidManager.cs
- XmlSchemaImport.cs
- BitmapCacheBrush.cs
- Typography.cs
- WindowsSolidBrush.cs
- RoleServiceManager.cs
- DataGridViewLayoutData.cs
- XmlSerializerNamespaces.cs
- HideDisabledControlAdapter.cs
- SimpleHandlerFactory.cs
- AnimatedTypeHelpers.cs
- DynamicRenderer.cs
- AnnotationHelper.cs
- LiteralControl.cs
- Aggregates.cs
- DelayDesigner.cs
- DefaultValidator.cs
- LayoutTable.cs
- ErrorsHelper.cs
- ReflectionUtil.cs
- XmlPreloadedResolver.cs
- Process.cs
- SqlConnectionHelper.cs
- DbParameterCollectionHelper.cs
- SqlConnectionPoolGroupProviderInfo.cs
- RuntimeConfig.cs
- TrackingRecord.cs
- MimeMapping.cs
- DataGridViewCellStyleChangedEventArgs.cs
- PointAnimationUsingKeyFrames.cs
- Stylesheet.cs
- SqlCharStream.cs
- SqlResolver.cs
- BlobPersonalizationState.cs
- IndicCharClassifier.cs
- MultiAsyncResult.cs
- SelectionGlyph.cs
- __FastResourceComparer.cs
- UIInitializationException.cs
- ByteRangeDownloader.cs
- HtmlInputImage.cs
- Rijndael.cs
- CommandSet.cs
- TextWriter.cs
- FrameworkElementAutomationPeer.cs
- UIElementHelper.cs
- GiveFeedbackEvent.cs
- ToolStripComboBox.cs
- AccessorTable.cs
- ConnectionManagementElement.cs
- NavigationCommands.cs
- DataGridViewDataConnection.cs
- NamespaceExpr.cs
- serverconfig.cs
- SizeLimitedCache.cs
- XmlBinaryReader.cs
- MappingItemCollection.cs
- TreeViewImageKeyConverter.cs
- UIElementIsland.cs
- QueryableFilterRepeater.cs
- _ListenerRequestStream.cs
- StackSpiller.Generated.cs
- DictionarySectionHandler.cs
- ResolveMatchesApril2005.cs
- AesCryptoServiceProvider.cs
- ExternalException.cs
- LambdaCompiler.Address.cs
- DataGridViewCellConverter.cs
- Stopwatch.cs
- SubtreeProcessor.cs
- SiteMapNodeItemEventArgs.cs
- ChannelPoolSettingsElement.cs
- ISAPIApplicationHost.cs
- SerialPort.cs