Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
epidemian
GitHub Repository: epidemian/gravity
Path: blob/master/src/compiler/gravity_optimizer.h
1214 views
1
//
2
// gravity_optimizer.h
3
// gravity
4
//
5
// Created by Marco Bambini on 24/09/14.
6
// Copyright (c) 2014 CreoLabs. All rights reserved.
7
//
8
9
#ifndef __GRAVITY_OPTIMIZER__
10
#define __GRAVITY_OPTIMIZER__
11
12
#include "gravity_macros.h"
13
#include "gravity_value.h"
14
15
gravity_function_t *gravity_optimizer(gravity_function_t *f);
16
17
#endif
18
19