Update CHANGES.html and RELEASE_NOTES

This commit is contained in:
Tom Henderson
2020-12-02 20:53:26 -08:00
parent 5b2f902d04
commit 15c15a47bd
2 changed files with 9 additions and 0 deletions

View File

@@ -58,6 +58,11 @@ us a note on ns-developers mailing list.</p>
<b>Time::RoundTo (unit)</b> allows time to be rounded to the nearest integer multiple of unit</li>
<li><b>Time::RoundTo (unit)</b> allows time to be rounded to the nearest integer multiple of unit</li>
<li><b>UdpClient now can report both transmitted and received bytes.</li>
<li>A new <b>MPI Enable()</b> variant was introduced that takes a user-supplied MPI_Communicator, allowing for partitioning of the MPI processes.</li>
<li>A <b>Length</b> class has been introduced to allow users to replace the use of raw numbers (ints, doubles) that have implicit lengths with a class that represents lengths with an explicit unit.</li>
<li>A flexible <b>CsvReader</b> class has been introduced to allow users to read in csv- or tab-delimited data.</li>
<li>The <li>ListPositionAllocator</li> can now input positions from a csv file.
k
</ul>
<h2>Changes to existing API:</h2>
<ul>

View File

@@ -17,6 +17,10 @@ New user-visible features
- (wifi) A new table-based error model based on link simulations has been
added (TableBasedErrorRateModel) and made the default for 802.11n/ac/ax simulations.
- (wifi) It is now possible to select either BCC or LDPC FEC encoding.
- (mpi) A new Enable call was added that takes a user supplied MPI_Communicator, which enables (optional) partitioning of the MPI processes. See !389.
- (core) A new Length class has been added to represent lengths with an explicit unit, rather than the use of raw numbers (ints, doubles) with implicit length.
- (core) A flexible CsvReader class has been introduced to allow users to read in csv- or tab-delimited data.
- (mobility) The ListPositionAllocator can now input positions from a csv file.
Bugs fixed
----------