feat: add ceil and floor funcs

This commit is contained in:
Matthieu Bessat 2022-05-16 10:53:45 +02:00
parent d562af9876
commit 547c5d0c63
4 changed files with 48 additions and 6 deletions

View file

@ -32,7 +32,7 @@ ToDo List:
- [ ] add support for priority operators
- [X] add input_number() std function
- [ ] add type() std function
- [ ] add ceil() and floor() std functions
- [X] add ceil() and floor() std functions
- [X] base of the CLI
- [ ] evaluate expression from stdin
- [X] read a file
@ -48,6 +48,7 @@ ToDo List:
- [ ] add fully features strings support
- [ ] add [classic problem solving](https://rosettacode.org) with code examples
- [ ] add Web Assembly support and publish a demo website
- [ ] refactor: remove inconsistency on how functions returns error codes
## Installation

View file

@ -10,9 +10,13 @@
#include <stdlib.h>
int main () {
struct VariableStore* store = var_store_init();
printf("%d", var_store_hash_name(store, "var"));
float ex = 2.00001430511;
printf("as bin %d \n", (int) ex);
return 0;
// struct VariableStore* store = var_store_init();
// printf("%d", var_store_hash_name(store, "var"));
// return 0;
// struct List l1;
// short val = 17;

View file

@ -28,6 +28,33 @@ int abs_impl(int* res, unsigned char* resType, unsigned char* types, int* args)
return 1;
}
int floor_impl(int* res, unsigned char* resType, unsigned char* types, int* args)
{
*resType = TYPE_INT;
if (types[0] == TYPE_INT) {
*res = args[0];
return 0;
}
if (types[0] == TYPE_FLOAT) {
float val = get_float_from_int_rep(args[0]);
*res = (int) val;
return 0;
}
return 1;
}
int ceil_impl(int* res, unsigned char* resType, unsigned char* types, int* args)
{
int resInterm = 0;
if (floor_impl(&resInterm, resType, types, args)) {
return 1;
}
resInterm += 1;
*res = resInterm;
return 0;
}
int print_number_impl(int* res, unsigned char* resType, unsigned char* types, int* args)
{
*resType = TYPE_INT;
@ -277,6 +304,8 @@ struct FuncIntro intros[] = {
{"random_int", &random_int_impl, 2},
{"max", &max_impl, 2},
{"floor", &floor_impl, 1},
{"ceil", &ceil_impl, 1},
{"get_pi", &get_pi_impl, 0},
{"print_number", &print_number_impl, 1},

View file

@ -69,9 +69,17 @@ void test_evaluation()
assert(resType == TYPE_FLOAT);
assert(float_almost_equal(1, get_float_from_int_rep(resVal)));
evaluate(state, "get_pi()", &resVal, &resType);
assert(resType == TYPE_FLOAT);
assert(float_almost_equal(3.14159, get_float_from_int_rep(resVal)));
evaluate(state, "ceil(1.5)", &resVal, &resType);
assert(resType == TYPE_INT);
assert(2 == resVal);
evaluate(state, "floor(1.5)", &resVal, &resType);
assert(resType == TYPE_INT);
assert(1 == resVal);
evaluate(state, "floor(1.001)", &resVal, &resType);
assert(resType == TYPE_INT);
assert(1 == resVal);
evaluate(state, "random_int(1, 100)", &resVal, &resType);
assert(resType == TYPE_INT);