/* Math.DoubleArrayOperation.cs 24 November 2009 - Adapted from old Dave codebase to generic DTS utility, with appropriate name change. $Log: Math.ChannelOperation.cs,v $ Revision 1.2 2007/02/05 17:17:08 Paul Hrissikopoulos Finished installing generic channel math framework + basic calculus operations. Revision 1.1 2007/02/02 22:34:09 Paul Hrissikopoulos Added framework for DAVE channel math operators. Copyright © 2007 Diversified Technical Systems, Inc. All Rights Reserved */ using System; using System.Collections.Generic; using System.Text; namespace DTS.Common.Utilities.Math { //////////////////////////////////////////////////////////////////////////////// /// /// Representation of a mathematical operation to be performed /// on System.Collections.Generic.IList data. /// public abstract class DoubleListOperation : Operation, IList> { //////////////////////////////////////////////////////////////////////////////// /// /// Initialize an instance of the ChannelOperation class. As a matter of /// style, a domain is required for object creation. /// /// /// /// A System.Collections.Generic.IList of s to be /// integrated. /// /// public DoubleListOperation(IList domain) : base(domain) { } //////////////////////////////////////////////////////////////////////////////// } //////////////////////////////////////////////////////////////////////////////// }