Conor Hoekstra

Results 41 comments of Conor Hoekstra

Yea i had thought `I` was usually `int64_t` but this is a bit perplexing

Just for peoples reference: * COO = [Coordinate List](https://en.wikipedia.org/wiki/Sparse_matrix#Coordinate_list_(COO)) * MPFR = [Multiple Precision Floating Point Reliable](https://www.mpfr.org/) library * GMP = [GNU Multiple Precision](https://gmplib.org/) So sounds like we could if...

Yea the one tricky part of removing fractional and extended will be modifying the promotion. It is easy enough to identify types with "??x" but "int * int = ??x"...

will merge when conflicts are resolved

Just adding to this. I tried building/installing `dex` with `clang++-14` (by modifying the `makefile`) as well as I am on Ubuntu 22.04 which doesn't come with `clang++-12` either and it...

Thanks for this! Will address all in the future. I also want to change Jellyfish to work such that the first chain in a multichain has a fixed arity (I...

My mental model is/was definitely wrong. I didn't realize the chain is formed and then the context still matters. I also feel like i don't totally understand explicitly what the...

Interesting. And yea, I realized that I could have just used a monadic separator to get what I wanted with the d2 combinator. But I like the expressions having a...

The `. scan` (aka monadic separator scan`) is overiding the arity of the first chain (from monadic to dyadic)

Make sure to skip dyadic functions that have a scalar on the right or left (see https://github.com/codereport/jello/issues/20)