forked from wbhart/mpir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
638 lines (556 loc) · 10.2 KB
/
.gitignore
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
#################
## Project files
#################
/build.vc/output_params.bat
/build.vc*/test-config.props
#################
## Eclipse
#################
*.pydevproject
.project
.metadata
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath
# External tool builders
.externalToolBuilders/
# Locally stored "Eclipse launch configurations"
*.launch
# CDT-specific
.cproject
# PDT-specific
.buildpath
#################
## Visual Studio
#################
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
# User-specific files
*.suo
*.user
*.userosscache
*.sln.docstates
# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
[Ww]in32/
# Visual Studio 2015 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/
# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*
# NUNIT
*.VisualState.xml
TestResult.xml
# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c
# Benchmark Results
BenchmarkDotNet.Artifacts/
# .NET Core
project.lock.json
project.fragment.lock.json
artifacts/
**/Properties/launchSettings.json
#*_i.c
#*_p.c
#*_i.h
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc
# Chutzpah Test files
_Chutzpah*
# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile
*.VC.db
*.VC.VC.opendb
# Visual Studio profiler
*.psess
*.vsp
*.vspx
*.sap
# TFS 2012 Local Workspace
$tf/
# Guidance Automation Toolkit
*.gpState
# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user
# JustCode is a .NET coding add-in
.JustCode
# TeamCity is a build add-in
_TeamCity*
# DotCover is a Code Coverage Tool
*.dotCover
# Visual Studio code coverage results
*.coverage
*.coveragexml
# NCrunch
_NCrunch_*
.*crunch*.local.xml
nCrunchTemp_*
# MightyMoose
*.mm.*
AutoTest.Net/
# Web workbench (sass)
.sass-cache/
# Installshield output folder
[Ee]xpress/
# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html
# Click-Once directory
publish/
# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
# TODO: Comment the next line if you want to checkin your web deploy settings
# but database connection strings (with potential passwords) will be unencrypted
*.pubxml
*.publishproj
# Microsoft Azure Web App publish settings. Comment the next line if you want to
# checkin your Azure Web App publish settings, but sensitive information contained
# in these scripts will be unencrypted
PublishScripts/
# NuGet Packages
*.nupkg
# The packages folder can be ignored because of Package Restore
**/packages/*
# except build/, which is used as an MSBuild target.
!**/packages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/packages/repositories.config
# NuGet v3's project.json files produces more ignorable files
*.nuget.props
*.nuget.targets
# Microsoft Azure Build Output
csx/
*.build.csdef
# Microsoft Azure Emulator
ecf/
rcf/
# Windows Store app package directories and files
AppPackages/
BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt
*.appx
# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!*.[Cc]ache/
# Others
ClientBin/
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.jfm
*.pfx
*.publishsettings
orleans.codegen.cs
# Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/
# RIA/Silverlight projects
Generated_Code/
# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm
# SQL Server files
*.mdf
*.ldf
*.ndf
# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings
# Microsoft Fakes
FakesAssemblies/
# GhostDoc plugin setting file
*.GhostDoc.xml
# Node.js Tools for Visual Studio
.ntvs_analysis.dat
node_modules/
# Typescript v1 declaration files
typings/
# Visual Studio 6 build log
*.plg
# Visual Studio 6 workspace options file
*.opt
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
*.vbw
# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions
# Paket dependency manager
.paket/paket.exe
paket-files/
# FAKE - F# Make
.fake/
# JetBrains Rider
.idea/
*.sln.iml
# CodeRush
.cr/
# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc
# Cake - Uncomment if you are using it
# tools/**
# !tools/packages.config
# Tabs Studio
*.tss
# Telerik's JustMock configuration file
*.jmconfig
# BizTalk build output
*.btp.cs
*.btm.cs
*.odx.cs
*.xsd.cs
############
## Windows
############
# Windows image file caches
Thumbs.db
# Folder config file
Desktop.ini
#############
## Python
#############
*.py[co]
# Packages
*.egg
*.egg-info
dist
build
eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg
# Installer logs
pip-log.txt
# Unit test / coverage reports
.coverage
.tox
#Translations
*.mo
#Mr Developer
.mr.developer.cfg
# Mac crap
.DS_Store
############
# *nix
############
*.lo
*.o
*.a
*.la
.libs
mpn/*.c
mpn/*.as
mpn/*.asm
Makefile
mpir.h
config.h
config.m4
*.log
*.in
*.trs
config.status
libtool
stamp-h1
autom4te.cache/
yasm/YASM-VERSION-FILE
yasm/YASM-VERSION.h
yasm/autom4te.cache/
yasm/.deps/
yasm/results
yasm/config/config.guess
yasm/config/config.sub
yasm/configure.gnu
yasm/configure.lineno
yasm/libyasm-stdint.h
yasm/po/Makefile.in
yasm/po/POTFILES
yasm/stamp-h1
yasm_mac.inc
gmp.h
longlong.h
gmp-mparam.h
tune/sqr_basecase.c
autoscript
cdata
test-driver
tests/fft/t-adjust
tests/fft/t-adjust_sqrt2
tests/fft/t-butterfly
tests/fft/t-butterfly_lshB
tests/fft/t-butterfly_rshB
tests/fft/t-butterfly_sqrt2
tests/fft/t-butterfly_twiddle
tests/fft/t-div_2expmod_2expp1
tests/fft/t-fft_ifft_mfa_trunc_sqrt2
tests/fft/t-fft_ifft_negacyclic
tests/fft/t-fft_ifft_radix2
tests/fft/t-fft_ifft_trunc
tests/fft/t-fft_ifft_trunc_sqrt2
tests/fft/t-mul_2expmod_2expp1
tests/fft/t-mul_fft_main
tests/fft/t-mul_mfa_trunc_sqrt2
tests/fft/t-mul_trunc_sqrt2
tests/fft/t-mulmod_2expp1
tests/fft/t-normmod_2expp1
tests/fft/t-split_combine_bits
tests/mpn/st_fat
tests/mpn/st_instrument
tests/mpn/t-addadd_n
tests/mpn/t-addsub_n
tests/mpn/t-aors_1
tests/mpn/t-asmtype
tests/mpn/t-dc_bdiv_q
tests/mpn/t-dc_bdiv_q_n
tests/mpn/t-dc_bdiv_qr
tests/mpn/t-dc_bdiv_qr_n
tests/mpn/t-dc_div_q
tests/mpn/t-dc_div_qr
tests/mpn/t-dc_div_qr_n
tests/mpn/t-dc_divappr_q
tests/mpn/t-divebyff
tests/mpn/t-divebyfobm1
tests/mpn/t-divrem_1
tests/mpn/t-fat
tests/mpn/t-gcdext
tests/mpn/t-get_d
tests/mpn/t-hgcd
tests/mpn/t-instrument
tests/mpn/t-inv_div_q
tests/mpn/t-inv_div_qr
tests/mpn/t-inv_div_qr_n
tests/mpn/t-inv_divappr_q
tests/mpn/t-inv_divappr_q_n
tests/mpn/t-invert
tests/mpn/t-iord_u
tests/mpn/t-lorrshift1
tests/mpn/t-matrix22
tests/mpn/t-mp_bases
tests/mpn/t-mullow_basecase
tests/mpn/t-mullowhigh
tests/mpn/t-mulmid
tests/mpn/t-mulmod_2expm1
tests/mpn/t-mulmod_2expp1
tests/mpn/t-neg
tests/mpn/t-perfsqr
tests/mpn/t-redc_1
tests/mpn/t-sb_bdiv_q
tests/mpn/t-sb_bdiv_qr
tests/mpn/t-sb_div_q
tests/mpn/t-sb_div_qr
tests/mpn/t-sb_divappr_q
tests/mpn/t-scan
tests/mpn/t-sizeinbase
tests/mpn/t-subadd_n
tests/mpn/t-tdiv_q
tests/mpn/t-tdiv_qr
tests/mpn/t-logic
tests/t-bswap
tests/t-constants
tests/t-count_zeros
tests/t-gmpmax
tests/t-hightomask
tests/t-modlinv
tests/t-parity
tests/t-popc
tests/t-sub
tests/misc/t-locale
tests/misc/t-printf
tests/misc/t-scanf
tests/mpf/reuse
tests/mpf/t-add
tests/mpf/t-cmp_d
tests/mpf/t-cmp_si
tests/mpf/t-conv
tests/mpf/t-div
tests/mpf/t-dm2exp
tests/mpf/t-eq
tests/mpf/t-fits
tests/mpf/t-get_d
tests/mpf/t-get_d_2exp
tests/mpf/t-get_si
tests/mpf/t-get_ui
tests/mpf/t-gsprec
tests/mpf/t-inp_str
tests/mpf/t-int_p
tests/mpf/t-mul_ui
tests/mpf/t-muldiv
tests/mpf/t-set
tests/mpf/t-set_q
tests/mpf/t-set_si
tests/mpf/t-set_ui
tests/mpf/t-sqrt
tests/mpf/t-sqrt_ui
tests/mpf/t-sub
tests/mpf/t-trunc
tests/mpf/t-ui_div
tests/mpq/t-aors
tests/mpq/t-cmp
tests/mpq/t-cmp_si
tests/mpq/t-cmp_ui
tests/mpq/t-cmp_z
tests/mpq/t-equal
tests/mpq/t-get_d
tests/mpq/t-get_str
tests/mpq/t-inp_str
tests/mpq/t-md_2exp
tests/mpq/t-set_f
tests/mpq/t-set_str
tests/mpz/bit
tests/mpz/convert
tests/mpz/dive
tests/mpz/dive_ui
tests/mpz/io
tests/mpz/logic
tests/mpz/reuse
tests/mpz/st_hamdist
tests/mpz/st_popcount
tests/mpz/t-addsub
tests/mpz/t-aorsmul
tests/mpz/t-bin
tests/mpz/t-cdiv_ui
tests/mpz/t-cmp
tests/mpz/t-cmp_d
tests/mpz/t-cmp_si
tests/mpz/t-cong
tests/mpz/t-cong_2exp
tests/mpz/t-div_2exp
tests/mpz/t-divis
tests/mpz/t-divis_2exp
tests/mpz/t-export
tests/mpz/t-fac_ui
tests/mpz/t-fdiv
tests/mpz/t-fdiv_ui
tests/mpz/t-fib_ui
tests/mpz/t-fits
tests/mpz/t-gcd
tests/mpz/t-gcd_ui
tests/mpz/t-get_d
tests/mpz/t-get_d_2exp
tests/mpz/t-get_si
tests/mpz/t-get_sx
tests/mpz/t-get_ux
tests/mpz/t-hamdist
tests/mpz/t-import
tests/mpz/t-inp_str
tests/mpz/t-io_raw
tests/mpz/t-jac
tests/mpz/t-lcm
tests/mpz/t-likely_prime_p
tests/mpz/t-limbs
tests/mpz/t-lucnum_ui
tests/mpz/t-mfac_uiui
tests/mpz/t-mul
tests/mpz/t-mul_i
tests/mpz/t-next_prime_candidate
tests/mpz/t-oddeven
tests/mpz/t-perfpow
tests/mpz/t-perfsqr
tests/mpz/t-popcount
tests/mpz/t-pow
tests/mpz/t-powm
tests/mpz/t-powm_ui
tests/mpz/t-pprime_p
tests/mpz/t-primorial_ui
tests/mpz/t-root
tests/mpz/t-scan
tests/mpz/t-set_d
tests/mpz/t-set_f
tests/mpz/t-set_si
tests/mpz/t-set_str
tests/mpz/t-set_sx
tests/mpz/t-set_ux
tests/mpz/t-sizeinbase
tests/mpz/t-sqrtrem
tests/mpz/t-tdiv
tests/mpz/t-tdiv_ui
tests/mpz/t-trial_division
tests/rand/t-iset
tests/rand/t-lc2exp
tests/rand/t-mt
tests/rand/t-rand
tests/rand/t-urbui
tests/rand/t-urmui
tests/rand/t-urndmm
aclocal.m4
compile
configure
doc/mpir.info
doc/mpir.info-1
doc/mpir.info-2
install-sh
ltmain.sh
missing