Skip to content

Commit a96cadf

Browse files
committed
update iteration loop number for check dead loop
1 parent eaceb0e commit a96cadf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • Data_science/DataMining/UMAP/Components

Data_science/DataMining/UMAP/Components/Utils.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Module Utils
8484
''' </summary>
8585
Public Function RejectionSample(nSamples As Integer, poolSize As Integer, random As IProvideRandomValues) As Integer()
8686
Dim result = New Integer(nSamples - 1) {}
87-
Dim maxItrs As Integer = 1000
87+
Dim maxItrs As Integer = 10000
8888

8989
For i As Integer = 0 To nSamples - 1
9090
Dim rejectSample = True

0 commit comments

Comments
 (0)