guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#26113: [PATCH 4/7] gnu: Add maxflow.


From: Kei Kebreau
Subject: bug#26113: [PATCH 4/7] gnu: Add maxflow.
Date: Fri, 17 Mar 2017 17:38:53 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux)

John Darrington <address@hidden> writes:

> * gnu/packages/maths.scm (maxflow): New variable.
> ---
>  gnu/packages/maths.scm | 24 ++++++++++++++++++++++++
>  1 file changed, 24 insertions(+)
>
> diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
> index 8e7580c..12a3207 100644
> --- a/gnu/packages/maths.scm
> +++ b/gnu/packages/maths.scm
> @@ -1111,6 +1111,30 @@ modules is done either interactively using the 
> graphical user interface or in
>  ASCII text files using Gmsh's own scripting language.")
>      (license license:gpl2+)))
>  
> +(define-public maxflow
> +  (package
> +    (name "maxflow")
> +    (version "3.04")
> +    (source (origin
> +              (method git-fetch)
> +              (uri (git-reference
> +                    (url "https://github.com/gerddie/maxflow.git";)
> +                    (commit "42401fa54823d16b9da47716f04e5d9ef1605875")))
> +              (file-name (string-append name "-" version "-checkout"))
> +              (sha256
> +               (base32
> +                "0rll38whw55h0vcjrrwdnh9ascvxby0ph7n1l0d12z17cg215kkb"))))
> +    (build-system cmake-build-system)
> +    (home-page "http://pub.ist.ac.at/~vnk/software.html";)
> +    (synopsis "Library implementing Maxflow algorithm")
> +    (description "An implementation of the maxflow algorithm described in
> address@hidden Experimental Comparison of Min-Cut/Max-Flow Algorithms for
> +Energy Minimization in Computer Vision.\n
> +Yuri Boykov and Vladimir Kolmogorov.\n
> +In IEEE Transactions on Pattern Analysis and Machine Intelligence,\n
> +September 2004}")

These aren't showing up as new lines. I tried replacing the newline
characters with the appropriate Texinfo substitute, @*, but that gave me
a parsing error. We might have to dive into some source code to fix this
(but hopefully not).

> +    (license license:gpl3+)))
> +
>  (define-public petsc
>    (package
>      (name "petsc")

Otherwise LGTM.

Attachment: signature.asc
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]