Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dpsanders committed Nov 5, 2015
1 parent 6b93f3b commit 0d3e1b0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
7 changes: 4 additions & 3 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,14 @@ Library improvements
Deprecated or removed
---------------------

* The following function names have been simplified and unified:
* `set_bigfloat_precision` -> `setprecision`
* The following function names have been simplified and unified ([#13232]):

* `get_bigfloat_precision` -> `precision(BigFloat)`
* `set_bigfloat_precision` -> `setprecision`
* `with_bigfloat_precision` -> `setprecision`

* `set_rounding` -> `setrounding`
* `get_rounding` -> `rounding`
* `set_rounding` -> `setrounding`
* `with_rounding` -> `setrounding`

* The method `A_ldiv_B!(SparseMatrixCSC, StrideVecOrMat)` has been deprecated
Expand Down
3 changes: 1 addition & 2 deletions doc/stdlib/numbers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ General Number Functions and Constants
Valid modes are ``RoundNearest``, ``RoundToZero``, ``RoundUp``,
``RoundDown``, and ``RoundFromZero`` (``BigFloat`` only).

.. function:: setrounding(f::Function, T, mode)
.. function:: setrounding(T, mode)

.. Docstring generated from Julia source
Expand Down Expand Up @@ -656,4 +656,3 @@ As ``BigInt`` represents unbounded integers, the interval must be specified (e.g
Create an array of the size ``jumps`` of initialized ``MersenneTwister`` RNG objects where the first RNG object given as a parameter and following ``MersenneTwister`` RNGs in the array initialized such that a state of the RNG object in the array would be moved forward (without generating numbers) from a previous RNG object array element on a particular number of steps encoded by the jump polynomial ``jumppoly``\ .

Default jump polynomial moves forward ``MersenneTwister`` RNG state by 10^20 steps.

0 comments on commit 0d3e1b0

Please sign in to comment.