Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2839_HiveProjectManagement/HeuristicLab.ExtLibs/HeuristicLab.AutoDiff/1.0/AutoDiff-1.0/Compiled/Product.cs

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

#1960 added HL wrapper plugin for AutoDiff

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