You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
362 B
19 lines
362 B
#ifndef ETHSERP_OPTIMIZER
|
|
#define ETHSERP_OPTIMIZER
|
|
|
|
#include <stdio.h>
|
|
#include <iostream>
|
|
#include <vector>
|
|
#include <map>
|
|
#include "util.h"
|
|
|
|
// Compile-time arithmetic calculations
|
|
Node optimize(Node inp);
|
|
|
|
// Is a node degenerate (ie. trivial to calculate) ?
|
|
bool isDegenerate(Node n);
|
|
|
|
// Is a node purely arithmetic?
|
|
bool isPureArithmetic(Node n);
|
|
|
|
#endif
|
|
|