Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Common / Utils / Boolean / NegationPusher.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- xmlsaver.cs
- ObjectCloneHelper.cs
- MsmqOutputMessage.cs
- QilVisitor.cs
- DBSqlParserColumnCollection.cs
- X509Certificate.cs
- _SslStream.cs
- CopyOfAction.cs
- DataTableNewRowEvent.cs
- MultiPageTextView.cs
- TrailingSpaceComparer.cs
- RegionData.cs
- XmlSchemaExporter.cs
- EnumerableRowCollection.cs
- BindingGroup.cs
- DesignerSerializerAttribute.cs
- DesigntimeLicenseContext.cs
- ReceiveSecurityHeader.cs
- Exceptions.cs
- FacetChecker.cs
- RegisterInfo.cs
- SQLCharsStorage.cs
- CodeEntryPointMethod.cs
- URLBuilder.cs
- WorkItem.cs
- Transactions.cs
- ModelVisual3D.cs
- AddInSegmentDirectoryNotFoundException.cs
- DataGridToolTip.cs
- GenerateScriptTypeAttribute.cs
- EdmType.cs
- XmlSerializerVersionAttribute.cs
- Label.cs
- ResourcesGenerator.cs
- SqlConnectionString.cs
- TextEffectCollection.cs
- SharedDp.cs
- MD5.cs
- iisPickupDirectory.cs
- WindowHideOrCloseTracker.cs
- WindowsPrincipal.cs
- ValidationSummary.cs
- NameTable.cs
- SqlDataSourceDesigner.cs
- DataGridViewElement.cs
- ToggleProviderWrapper.cs
- WebPartHeaderCloseVerb.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- panel.cs
- DynamicResourceExtensionConverter.cs
- Trace.cs
- GroupByQueryOperator.cs
- Vertex.cs
- RecognitionEventArgs.cs
- ForceCopyBuildProvider.cs
- GcSettings.cs
- ComponentEditorForm.cs
- XomlCompiler.cs
- TextView.cs
- OracleConnection.cs
- ExpandSegmentCollection.cs
- RowSpanVector.cs
- SequenceRange.cs
- MergeFilterQuery.cs
- ExternalException.cs
- EnumerableValidator.cs
- AutomationProperties.cs
- DirectoryObjectSecurity.cs
- dataSvcMapFileLoader.cs
- MtomMessageEncoder.cs
- PerformanceCounterScope.cs
- HtmlSelect.cs
- WhitespaceRule.cs
- Point3DIndependentAnimationStorage.cs
- SiteMapProvider.cs
- DesignerSerializationVisibilityAttribute.cs
- ButtonFlatAdapter.cs
- baseshape.cs
- BinaryObjectReader.cs
- JsonDataContract.cs
- TextRangeEdit.cs
- PhysicalAddress.cs
- ComponentResourceManager.cs
- HttpRequestCacheValidator.cs
- EventToken.cs
- MaxMessageSizeStream.cs
- AstTree.cs
- SmtpNetworkElement.cs
- ReadOnlyHierarchicalDataSource.cs
- WebDescriptionAttribute.cs
- TrustManagerMoreInformation.cs
- _LocalDataStoreMgr.cs
- Mappings.cs
- LocationSectionRecord.cs
- AnnotationResourceChangedEventArgs.cs
- CustomLineCap.cs
- QilSortKey.cs
- RenderTargetBitmap.cs
- SerTrace.cs
- DetailsViewDeleteEventArgs.cs