mathexpr.hh (11531:76d0e456a9a9) mathexpr.hh (11545:17b2ccafd139)
1/*
2 * Copyright (c) 2016 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 27 unchanged lines hidden (view full) ---

36 *
37 * Authors: David Guillen Fandos
38 */
39
40#ifndef __SIM_MATHEXPR_HH__
41#define __SIM_MATHEXPR_HH__
42
43#include <algorithm>
1/*
2 * Copyright (c) 2016 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 27 unchanged lines hidden (view full) ---

36 *
37 * Authors: David Guillen Fandos
38 */
39
40#ifndef __SIM_MATHEXPR_HH__
41#define __SIM_MATHEXPR_HH__
42
43#include <algorithm>
44#include <array>
44#include <functional>
45#include <string>
46
47class MathExpr {
48 public:
49
50 MathExpr(std::string expr);
51

--- 76 unchanged lines hidden ---
45#include <functional>
46#include <string>
47
48class MathExpr {
49 public:
50
51 MathExpr(std::string expr);
52

--- 76 unchanged lines hidden ---