Skip to content

Commit d79196f

Browse files
committed
feat: Update .gitignore and README
1 parent a87e7db commit d79196f

File tree

2 files changed

+16
-11
lines changed

2 files changed

+16
-11
lines changed

.gitignore

+12-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
1-
# IntelliJ project files
2-
.idea/
3-
*.iml
4-
out
5-
gen
6-
7-
# Visial Studio Code project files
8-
.vscode/
1+
*.prof
92

103
# Binaries for programs and plugins
114
*.exe
@@ -17,9 +10,20 @@ gen
1710
# Test binary, built with `go test -c`
1811
*.test
1912

13+
# coverage files
14+
coverage.*
15+
2016
# Output of the go coverage tool, specifically when used with LiteIDE
2117
*.out
18+
*.html
2219

2320
# Dependency directories (remove the comment below to include it)
2421
vendor/
2522

23+
# Go fuzzing data
24+
testdata/
25+
26+
# IDEs
27+
.idea/
28+
.vscode/
29+
.fleet/

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
[![Go Reference](https://pkg.go.dev/badge/github.com/txaty/go-bigcomplex.svg)](https://pkg.go.dev/github.com/txaty/go-bigcomplex)
44
[![Go Report Card](https://goreportcard.com/badge/github.com/txaty/go-bigcomplex)](https://goreportcard.com/report/github.com/txaty/go-bigcomplex)
5-
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/3a9bb5ff5cb64dcf83903ca998a9144d)](https://app.codacy.com/gh/txaty/go-merkletree/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
5+
[![codecov](https://codecov.io/gh/txaty/go-bigcomplex/graph/badge.svg?token=LPW23PAEH8)](https://codecov.io/gh/txaty/go-bigcomplex)
6+
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/f149e51e0475464d843477adba68b577)](https://app.codacy.com/gh/txaty/go-bigcomplex/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
67
[![MIT license](https://img.shields.io/badge/license-MIT-brightgreen.svg)](https://opensource.org/licenses/MIT)
78

89
Big complex number calculation library for Go (with [math/big](https://pkg.go.dev/math/big)).
@@ -12,14 +13,14 @@ Currently, the library supports:
1213
1. Gaussian integer, complex numbers whose real and imaginary parts are both integers:
1314

1415
$$
15-
Z[i] = \{ a + bi \;|\; a, b \in \mathbb{Z} \}, \quad \text{where } i^2 = -1.
16+
Z[i] = \{ a + bi \ |\ a, b \in \mathbb{Z} \}, \quad \text{where } i^2 = -1.
1617
$$
1718

1819
2. Hurwitz quaternion, quaternions whose components are either all integers or all half-integers (halves of odd
1920
integers; a mixture of integers and half-integers is excluded):
2021

2122
$$
22-
H = \{ a + bi + cj + dk \in \mathbb{H} \;|\; a, b, c, d \in \mathbb{Z} \; \text{or} \; b, c, d \in \mathbb{Z} + \frac{1}{2} \}.
23+
H = \{ a + bi + cj + dk \in \mathbb{H} \ |\ a, b, c, d \in \mathbb{Z} \ \text{or} \ b, c, d \in \mathbb{Z} + \frac{1}{2} \}.
2324
$$
2425

2526
## Installation

0 commit comments

Comments
 (0)