[chore] Correct the java doc in funtion DagHelperTest generateDag2 (#9602)

Co-authored-by: Jiajie Zhong <zhongjiajie955@gmail.com>
dev
yimaixinchen 2022-04-23 10:31:48 +08:00 committed by GitHub
parent 072ba731a2
commit fb11525e49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 4 deletions

View File

@ -280,9 +280,16 @@ public class DagHelperTest {
} }
/** /**
* process:
* 1->2->3->5->7 * 1->2->3->5->7
* 4->3->6 * 4->3->6
* 2->8->5->7 * 1->2->8->5->7
* DAG graph:
* 4 -> -> 6
* \ /
* 1 -> 2 -> 3 -> 5 -> 7
* \ /
* -> 8 ->
* *
* @return dag * @return dag
* @throws JsonProcessingException if error throws JsonProcessingException * @throws JsonProcessingException if error throws JsonProcessingException
@ -377,9 +384,12 @@ public class DagHelperTest {
} }
/** /**
* 1->2->3->5->7 * DAG graph:
* 4->3->6 * 2
* 2->8->5->7 *
* 0->1(switch)
*
* 4
* *
* @return dag * @return dag
* @throws JsonProcessingException if error throws JsonProcessingException * @throws JsonProcessingException if error throws JsonProcessingException