Semyon

Results 45 comments of Semyon

Great! Waiting for your feedback.

From ["The Reduceron: Widening the von Neumann Bottleneck for Graph Reduction using an FPGA"](https://github.com/tommythorn/Reduceron/blob/master/docs/reduceron.pdf): > Another restriction of the implementation is that functions have a maximum of eight parameters. This...

Well, the problem is caused by functions with more than 8 arguments. ``` { test x1 x2 x3 x4 x5 x6 x7 x8 x9 = x1 + x2 + x3...

Ah, I see. Thank you. We found [a workaround](https://github.com/Kakadu/Reduceron). I'm not sure that it is a good solution, but it is ok for us since allows us to build Reduceron.

Hi @Xpitfire , I try to publish new package with signed assemblies asap. Unfortunately, right way (for me) is not fast because we use some 3rd party packages which contain...

@petrasvestartas It is discussed [here.](https://github.com/YaccConstructor/QuickGraph/issues/148#issuecomment-416355550) May you help us to make great documentation?

Yes, we have. But in mind only. First of all we should solve problems with "legacy" PEX-based tests (Issue #5), CodeContracts, and may be with PCL (Issue #6). More over,...

@legnars hello! Seems, that we still can get problems with CodeContracts (seems that it is not ported to .NET Core: https://github.com/Microsoft/CodeContracts/issues/231) Could you do some "research" to create a detailed...

@legnars @irperez Well. Let just remove all CodeContracts related stuff. @legnars can you do it? Next. What about PEX? It is a legacy too. Is it possible to migrate test...

@legnars Can you look at https://github.com/deniszykov/code-contracts-remover ? It may help us to convert CodeContracts' conditions to "if (cond) then ... else throw ...". I think that it is one of...