Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Some minor documentation correction
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrien Boussicault committed Feb 8, 2015
1 parent 4361556 commit 7ea864d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/sage/combinat/non_ambiguous_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,11 @@ def get_p( self ):
sage: def test_p_conjecture( h, w ):
....: res = count_nat_by_p( h, w )
....: p_max = min( w,h )
....: suite = [ factorial(p) * factorial(p-1) * stirling_number2(w,p) * stirling_number2(h,p) for p in range( 1, p_max+1 ) ]
....: suite = [
....: factorial(p) * factorial(p-1) *
....: stirling_number2(w,p) * stirling_number2(h,p)
....: for p in range( 1, p_max+1 )
....: ]
....: for p in range( 1, p_max+1 ):
....: if res[p] != suite[p-1]:
....: return False
Expand Down

0 comments on commit 7ea864d

Please sign in to comment.