Skip to content

Commit

Permalink
Merge pull request #9 from felipeZ/mgs
Browse files Browse the repository at this point in the history
modified Gram-Schmidt
  • Loading branch information
felipeZ authored Feb 28, 2020
2 parents b1bb6cc + 92138b1 commit 75ad071
Show file tree
Hide file tree
Showing 9 changed files with 252 additions and 121 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,20 @@ name: build
on: [push]

jobs:
build:

build_debug:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

build_release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
## [Unreleased]


## [0.2.0]

## Changed
* Used [modified Gram-Schmidt orthogonalization](https://github.com/felipeZ/eigenvalues/issues/8)
* [Reduce scaling of the search space](https://github.com/felipeZ/eigenvalues/issues/10)

### Fixed
* Bug in DPR correction.

## [0.1.4]

### Changed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "eigenvalues"
version = "0.1.4"
version = "0.2.0"
authors = ["felipe <[email protected]>"]
description = "algorithms to compute eigenvalue/eigenvectors of symmetric matrices"
readme = "README.md"
Expand Down
Loading

0 comments on commit 75ad071

Please sign in to comment.