Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { newGeneration } from './ConwaysGameOfLife'
import { newGeneration } from '../ConwaysGameOfLife'

describe('newGeneration', () => {
it('should produce the next generation according to the rules', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { QuickSelect } from './QuickSelect'
import { QuickSelect } from '../QuickSelect'

describe('QuickSelect tests', () => {
it('should return the only element of a list of length 1', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Vector2 } from './Vector2.js'
import { Vector2 } from '../Vector2.js'

describe('Vector2', () => {
describe('#equalsExactly', () => {
Expand Down
2 changes: 1 addition & 1 deletion Linear-Algebra/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,4 @@ The test-suite use the JavaScript test-framework **mocha**.

You can contribute to this project. Feel free and pull request some new features or documention.
**TODO:** Global functions for special matrices.
**TODO:** Documention of the classes and functions.
**TODO:** Documention of the classes and functions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { breadthFirstSearch, depthFirstSearch } from './FloodFill'
import { breadthFirstSearch, depthFirstSearch } from '../FloodFill'

// some constants
const black = [0, 0, 0]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { iterate, Vector2 } from './KochSnowflake'
import { iterate, Vector2 } from '../KochSnowflake'

describe('KochSnowflake', () => {
it('should produce the correctly-transformed vectors', () => {
Expand Down