Skip to content

Commit

Permalink
Updated pages "Karatsuba multiplication", "Primitive recursive functi…
Browse files Browse the repository at this point in the history
…ons".
  • Loading branch information
nayuki committed Aug 29, 2016
1 parent 65f3f2a commit 08b78d0
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion karatsuba-multiplication/KaratsubaMultiplication.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Karatsuba fast multiplication algorithm
* Karatsuba fast multiplication algorithm (Java)
*
* Copyright (c) 2014 Project Nayuki
* All rights reserved. Contact Nayuki for licensing.
Expand Down
5 changes: 3 additions & 2 deletions karatsuba-multiplication/karatsuba.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#
# Karatsuba fast multiplication algorithm
# Copyright (c) 2014 Project Nayuki
# Karatsuba fast multiplication algorithm (Python)
#
# Copyright (c) 2014 Project Nayuki
# All rights reserved. Contact Nayuki for licensing.
# https://www.nayuki.io/page/karatsuba-multiplication
#

Expand Down
2 changes: 1 addition & 1 deletion primitive-recursive-functions/Prf.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Primitive recursive functions
* Primitive recursive functions (Java)
*
* Copyright (c) 2015 Project Nayuki
* All rights reserved. Contact Nayuki for licensing.
Expand Down
2 changes: 1 addition & 1 deletion primitive-recursive-functions/PrfTest.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Test suite for Prf.
* Test suite for Prf (Java).
* Runnable as a main program, which should print "All N tests passed".
*
* Copyright (c) 2014 Project Nayuki
Expand Down
2 changes: 1 addition & 1 deletion primitive-recursive-functions/PrimRecFunc.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{-
- Primitive recursive functions
- Primitive recursive functions (Haskell)
-
- Copyright (c) 2015 Project Nayuki
- All rights reserved. Contact Nayuki for licensing.
Expand Down
2 changes: 1 addition & 1 deletion primitive-recursive-functions/PrimRecFuncTest.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{-
- Test suite for PrimRecFunc.
- Test suite for PrimRecFunc (Python).
- Runnable as a main program, which should print "All N tests passed".
-
- Copyright (c) 2014 Project Nayuki
Expand Down
2 changes: 1 addition & 1 deletion primitive-recursive-functions/primrecfunc.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Primitive recursive functions
# Primitive recursive functions (Python)
#
# Copyright (c) 2015 Project Nayuki
# All rights reserved. Contact Nayuki for licensing.
Expand Down
2 changes: 1 addition & 1 deletion primitive-recursive-functions/primrecfunctest.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Test suite for primrecfunc.
# Test suite for primrecfunc (Haskell).
# Runnable as a main program, which should print "All N tests passed".
#
# Copyright (c) 2014 Project Nayuki
Expand Down

0 comments on commit 08b78d0

Please sign in to comment.