Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.AutoDiff/1.0/AutoDiff-1.0/Compiled/Sum.cs @ 8703

Last change on this file since 8703 was 8703, checked in by gkronber, 12 years ago

#1960 added HL wrapper plugin for AutoDiff

File size: 313 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace AutoDiff.Compiled
7{
8  class Sum : TapeElement
9    {
10        public int[] Terms;
11
12        public override void Accept(ITapeVisitor visitor)
13        {
14            visitor.Visit(this);
15        }
16  }
17}
Note: See TracBrowser for help on using the repository browser.