Jaro

Results 90 issues of Jaro

I just wrote a very simple naive Pollard rho algorithm for prime factorisation (not even Brent's improvement) and it turns out to beat arithmoi's `factorise` function for composite numbers around...

I feel like many of the interfaces in this package would benefit from being specified as backpack signatures. Backpack signatures are easily extendable, so you could define the labeled graphs...

For example, running brittany on the following (based on [the GHC docs](https://downloads.haskell.org/ghc/latest/docs/html/users_guide/exts/ffi.html#extension-CApiFFI)): ```Haskell data {-# CTYPE "unistd.h" "useconds_t" #-} T ``` Results in: ```Haskell data T ```

bug
language extension support

### Problem Description Creating a process in a keybinding fails. I know this can be fixed by using xfork, but I would like to know why it does not work...

I think this instance should work: ```haskell instance (Reflex t, Floating a) => Floating (Behavior t a) where pi = pure pi exp = fmap exp log = fmap log...

The `forM_ [1..N]` bug https://gitlab.haskell.org/ghc/ghc/-/issues/8763 has been resolved over the course of GHC 8.2 to 8.8.

question
inspection

I have translated this custom widget example to Haskell: https://developer.gnome.org/gtkmm-tutorial/stable/sec-custom-widgets.html.en I have published it here: https://github.com/noughtmare/gtk-custom-widget I have a few questions and observations (the checkboxes indicate if the question has...

I don't know where the github repo is for the [torrent app comparison website](https://biglysoftware.github.io/BiglyBT-Android/TorrentAppComparison.html), so I'm posting this here. I think it would be only fair to add the open...

Running ``` $(nix-build -A stack2nix)/bin/stack2nix --git-recursive --revision a4e21f43c94dfc253d07614e781347d657c86b9b https://github.com/haskell/haskell-ide-engine.git > ghc-8.4.nix ``` With `default.nix`: ```nix { pkgs ? (import (import ./fetch-nixpkgs.nix) {}) }: with pkgs; rec { stack2nix = import...