Amando

Results 82 comments of Amando

With the `set_graph()` logic, we don't need a global static graph to use in Zero and One, we can just call `graph: Graph::new()` and then set the graph to whichever...

Seems I was too tired to recall Rust 101, thanks for pointing that out. I have not taken a proper look at this module for some time, but I am...

Hi, sorry for the delay I have been quite busy with not so much time for OS stuff. I am still interested in this, but I am hesitant about the...

Sounds great :) Go ahead. It would be good to implement using a payoff trait like: ```rust trait PathDependentPayoff { fn payoff(&self, path: &[f64]) -> f64; } ``` That way...

Edit: I have done a basic Monte-Carlo pricer trait, and impl'd it for a vanilla option here: https://github.com/avhz/RustQuant/blob/main/src/instruments/options/vanilla.rs Hi, following up on this as I am doing a fair bit...

Hi, the test passes for me. Can you make a new issue with the error output ?

I get the same issue. Is there a solution ? To expand, I'm using pak via renv: ```R options(renv.config.pak.enabled = TRUE) renv::install("[email protected]", dependencies = TRUE, prompt = FALSE, lock =...

Just chiming in with a similar issue: ```python PydanticSerializationUnexpectedValue(Expected `float` - serialized value may not be as expected [input_value=RuntimeError('...'), input_type=RuntimeError]) ``` The runtime error in my case here can occur...

Is it possible to avoid the bind user ? I am not sure what user i would use for that.

Why does there need to be a separate service user in order to resolve the user that is attempting to login? `ldapsearch` and Python's `ldap3` don't require that, for example....