-
Notifications
You must be signed in to change notification settings - Fork 1
/
xnec2c-gao.cabal
83 lines (67 loc) · 2.36 KB
/
xnec2c-gao.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
cabal-version: 2.4
name: xnec2c-gao
version: 0.2.3
-- A short (one-line) description of the package.
synopsis: g(enetic)a(lgorithm)o(ptimizer) - An external genetic optimizer for xnec2c
-- A longer description of the package.
description: After you embelished a nec file with SYMBOLS and GENETICSYMBOLS to a gao file,
running the optimizer generates concrete nec models of genetic variants and runs
xnec2c optimisation loop to calculate VSWR/GAIN as fittness to select survivors,
applies genetic operations (mutation,crossover), adds random individuals, and reruns
loop until you are satisfied with the results, then writes survivors to nec files for you to build.
maintainer: Maurizio Di Pietro DC1MDP
author: Maurizio Di Pietro DC1MDP
-- A URL where users can report bugs.
bug-reports: http://github.com/polyrod/xnec2c-gao/
-- The license under which the package is released.
license: BSD-3-Clause
-- A copyright notice.
copyright: Copyright 2022 Maurizio Di Pietro DC1MDP. Program is provided "as is". Author is
not responsible for any havoc caused by the usage of this software. Use at own risk.
category: hamradio
extra-source-files: CHANGELOG.md
source-repository head
type: git
location: "http://github.com/polyrod/xnec2c-gao/"
executable xnec2c-gao
main-is: Main.hs
-- Modules included in this executable, other than Main.
other-modules: Types
, Utils
, Options
, GAOParser
, Genotype
, Phenotype
, Genetics
, OptFunc
, Display
, Output
, Paths_xnec2c_gao
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends:
base,
bytestring,
containers,
filepath-bytestring,
unix,
hinotify,
text,
megaparsec,
mtl,
parser-combinators,
scientific,
monad-loops,
monadlist,
optparse-applicative,
process,
pretty-simple,
random,
these,
directory,
gitrev,
AC-Angle,
text-builder
hs-source-dirs: app
default-language: Haskell2010
GHC-Options: -threaded -Wincomplete-patterns -Wall