Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3022-FastFunctionExtraction/FFX/Operator.cs @ 17227

Last change on this file since 17227 was 17227, checked in by lleko, 5 years ago

#3022: Add implementation for FFX.

File size: 438 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace HeuristicLab.Algorithms.DataAnalysis.FastFunctionExtraction
8{
9    public enum NonlinOp { None, Abs, Log, Sin, Cos };
10    static class Operator
11    {
12       
13        public static string ToString(NonlinOp op, string val) => op != NonlinOp.None ? op.ToString() + "(" + val + ")" : val;
14    }
15}
Note: See TracBrowser for help on using the repository browser.