"vscode:/vscode.git/clone" did not exist on "46eae182b9a2ad3cb906294e51be2838c98b5073"
Commit 67d0cd48 authored by rusty1s's avatar rusty1s
Browse files

removed branch

parent 157a8fe1
......@@ -12,17 +12,12 @@
while(e < THLongTensor_nElement(row)) { \
row_value = row_data[e]; \
if (output_data[row_value] < 0) { \
col_value = -1; \
col_value = row_value; \
SELECT \
if (col_value < 0) { \
output_data[row_value] = row_value; \
} \
else { \
v = row_value < col_value ? row_value : col_value; \
output_data[row_value] = v; \
output_data[col_value] = v; \
} \
} \
e += degree_data[row_value]; \
} \
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment