3
0

LY_SC_UnitTest_CompareLess.scriptcanvas 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 368127263463470
  9. },
  10. "Name": "scriptcanvas/unittests/ly_sc_unittest_compareless.scriptcanvas",
  11. "Components": {
  12. "Component_[17409414499611697377]": {
  13. "$type": "EditorGraphVariableManagerComponent",
  14. "Id": 17409414499611697377,
  15. "m_variableData": {
  16. "m_nameVariableMap": [
  17. {
  18. "Key": {
  19. "m_id": "{E0076D7E-786A-4CDF-B6B7-34C8A7F116FE}"
  20. },
  21. "Value": {
  22. "Datum": {
  23. "isOverloadedStorage": false,
  24. "scriptCanvasType": {
  25. "m_type": 3
  26. },
  27. "isNullPointer": false,
  28. "$type": "double",
  29. "value": 0.0,
  30. "label": "Zero"
  31. },
  32. "VariableId": {
  33. "m_id": "{E0076D7E-786A-4CDF-B6B7-34C8A7F116FE}"
  34. },
  35. "VariableName": "Zero"
  36. }
  37. },
  38. {
  39. "Key": {
  40. "m_id": "{FCD90ACD-882A-4EF8-83DB-21849C345B1B}"
  41. },
  42. "Value": {
  43. "Datum": {
  44. "isOverloadedStorage": false,
  45. "scriptCanvasType": {
  46. "m_type": 3
  47. },
  48. "isNullPointer": false,
  49. "$type": "double",
  50. "value": 1.0,
  51. "label": "Number"
  52. },
  53. "VariableId": {
  54. "m_id": "{FCD90ACD-882A-4EF8-83DB-21849C345B1B}"
  55. },
  56. "VariableName": "One"
  57. }
  58. }
  59. ]
  60. }
  61. },
  62. "Component_[208813563851134691]": {
  63. "$type": "EditorGraph",
  64. "Id": 208813563851134691,
  65. "m_graphData": {
  66. "m_nodes": [
  67. {
  68. "Id": {
  69. "id": 368161623201838
  70. },
  71. "Name": "SC-Node(Expect True)",
  72. "Components": {
  73. "Component_[10730024183766726094]": {
  74. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  75. "Id": 10730024183766726094,
  76. "Slots": [
  77. {
  78. "isVisibile": false,
  79. "id": {
  80. "m_id": "{55291AEE-F1CA-4415-9883-9FC9C15CBD3C}"
  81. },
  82. "contracts": [
  83. {
  84. "$type": "SlotTypeContract"
  85. },
  86. null
  87. ],
  88. "slotName": "EntityID: 0",
  89. "Descriptor": {
  90. "ConnectionType": 1,
  91. "SlotType": 2
  92. }
  93. },
  94. {
  95. "id": {
  96. "m_id": "{32DCB16B-1D5F-46EF-8C1C-2B3681989F90}"
  97. },
  98. "contracts": [
  99. {
  100. "$type": "SlotTypeContract"
  101. },
  102. null
  103. ],
  104. "slotName": "Candidate",
  105. "toolTip": "a value that must be true",
  106. "Descriptor": {
  107. "ConnectionType": 1,
  108. "SlotType": 2
  109. }
  110. },
  111. {
  112. "id": {
  113. "m_id": "{D3DBC463-C540-4AFB-8596-598FA21AEF2E}"
  114. },
  115. "contracts": [
  116. {
  117. "$type": "SlotTypeContract"
  118. },
  119. null
  120. ],
  121. "slotName": "Report",
  122. "toolTip": "additional notes for the test report",
  123. "Descriptor": {
  124. "ConnectionType": 1,
  125. "SlotType": 2
  126. }
  127. },
  128. {
  129. "id": {
  130. "m_id": "{A8D0CE92-B7C5-43E0-A388-10A0C2F11AE0}"
  131. },
  132. "contracts": [
  133. {
  134. "$type": "SlotTypeContract"
  135. }
  136. ],
  137. "slotName": "In",
  138. "Descriptor": {
  139. "ConnectionType": 1,
  140. "SlotType": 1
  141. }
  142. },
  143. {
  144. "id": {
  145. "m_id": "{3631FC4E-981B-4438-A1B0-2B363CE58A06}"
  146. },
  147. "contracts": [
  148. {
  149. "$type": "SlotTypeContract"
  150. }
  151. ],
  152. "slotName": "Out",
  153. "Descriptor": {
  154. "ConnectionType": 2,
  155. "SlotType": 1
  156. }
  157. }
  158. ],
  159. "Datums": [
  160. {
  161. "isOverloadedStorage": false,
  162. "scriptCanvasType": {
  163. "m_type": 1
  164. },
  165. "isNullPointer": false,
  166. "$type": "EntityId",
  167. "value": {
  168. "id": 4276206253
  169. }
  170. },
  171. {
  172. "isOverloadedStorage": false,
  173. "scriptCanvasType": {
  174. "m_type": 0
  175. },
  176. "isNullPointer": false,
  177. "$type": "bool",
  178. "value": false,
  179. "label": "Candidate"
  180. },
  181. {
  182. "isOverloadedStorage": false,
  183. "scriptCanvasType": {
  184. "m_type": 5
  185. },
  186. "isNullPointer": false,
  187. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  188. "value": "",
  189. "label": "Report"
  190. }
  191. ],
  192. "methodType": 2,
  193. "methodName": "Expect True",
  194. "className": "Unit Testing",
  195. "resultSlotIDs": [
  196. {}
  197. ],
  198. "prettyClassName": "Unit Testing"
  199. }
  200. }
  201. },
  202. {
  203. "Id": {
  204. "id": 368135853398062
  205. },
  206. "Name": "SC-Node(Less)",
  207. "Components": {
  208. "Component_[13107081264771429889]": {
  209. "$type": "Less",
  210. "Id": 13107081264771429889,
  211. "Slots": [
  212. {
  213. "id": {
  214. "m_id": "{D25E0B87-7866-403A-9C95-156CC4D9F4A3}"
  215. },
  216. "contracts": [
  217. {
  218. "$type": "SlotTypeContract"
  219. }
  220. ],
  221. "slotName": "Result",
  222. "DisplayDataType": {
  223. "m_type": 0
  224. },
  225. "Descriptor": {
  226. "ConnectionType": 2,
  227. "SlotType": 2
  228. }
  229. },
  230. {
  231. "id": {
  232. "m_id": "{DB0A7BFD-7064-4FBA-8E47-66CD17B7E914}"
  233. },
  234. "contracts": [
  235. {
  236. "$type": "SlotTypeContract"
  237. }
  238. ],
  239. "slotName": "In",
  240. "toolTip": "Signal to perform the evaluation when desired.",
  241. "Descriptor": {
  242. "ConnectionType": 1,
  243. "SlotType": 1
  244. }
  245. },
  246. {
  247. "id": {
  248. "m_id": "{31D1434A-1421-4C9B-858E-88C2F44F02B4}"
  249. },
  250. "contracts": [
  251. {
  252. "$type": "SlotTypeContract"
  253. }
  254. ],
  255. "slotName": "True",
  256. "toolTip": "Signaled if the result of the operation is true.",
  257. "Descriptor": {
  258. "ConnectionType": 2,
  259. "SlotType": 1
  260. }
  261. },
  262. {
  263. "id": {
  264. "m_id": "{BA43F000-C315-42FE-8867-9F31562FEC97}"
  265. },
  266. "contracts": [
  267. {
  268. "$type": "SlotTypeContract"
  269. }
  270. ],
  271. "slotName": "False",
  272. "toolTip": "Signaled if the result of the operation is false.",
  273. "Descriptor": {
  274. "ConnectionType": 2,
  275. "SlotType": 1
  276. }
  277. },
  278. {
  279. "id": {
  280. "m_id": "{15270B61-0978-4BDD-A0C0-138FAC7587D9}"
  281. },
  282. "DynamicTypeOverride": 3,
  283. "contracts": [
  284. {
  285. "$type": "SlotTypeContract"
  286. },
  287. null
  288. ],
  289. "slotName": "Value A",
  290. "DisplayDataType": {
  291. "m_type": 3
  292. },
  293. "Descriptor": {
  294. "ConnectionType": 1,
  295. "SlotType": 2
  296. },
  297. "DynamicGroup": {
  298. "Value": 3545012108
  299. },
  300. "IsReference": true,
  301. "VariableReference": {
  302. "m_id": "{E0076D7E-786A-4CDF-B6B7-34C8A7F116FE}"
  303. }
  304. },
  305. {
  306. "id": {
  307. "m_id": "{B48251BB-44AC-4A35-BAEF-3C387E42A2AF}"
  308. },
  309. "DynamicTypeOverride": 3,
  310. "contracts": [
  311. {
  312. "$type": "SlotTypeContract"
  313. },
  314. null
  315. ],
  316. "slotName": "Value B",
  317. "DisplayDataType": {
  318. "m_type": 3
  319. },
  320. "Descriptor": {
  321. "ConnectionType": 1,
  322. "SlotType": 2
  323. },
  324. "DynamicGroup": {
  325. "Value": 3545012108
  326. },
  327. "IsReference": true,
  328. "VariableReference": {
  329. "m_id": "{FCD90ACD-882A-4EF8-83DB-21849C345B1B}"
  330. }
  331. }
  332. ],
  333. "Datums": [
  334. {},
  335. {}
  336. ]
  337. }
  338. }
  339. },
  340. {
  341. "Id": {
  342. "id": 368131558430766
  343. },
  344. "Name": "SC-Node(Less)",
  345. "Components": {
  346. "Component_[13107081264771429889]": {
  347. "$type": "Less",
  348. "Id": 13107081264771429889,
  349. "Slots": [
  350. {
  351. "id": {
  352. "m_id": "{D25E0B87-7866-403A-9C95-156CC4D9F4A3}"
  353. },
  354. "contracts": [
  355. {
  356. "$type": "SlotTypeContract"
  357. }
  358. ],
  359. "slotName": "Result",
  360. "DisplayDataType": {
  361. "m_type": 0
  362. },
  363. "Descriptor": {
  364. "ConnectionType": 2,
  365. "SlotType": 2
  366. }
  367. },
  368. {
  369. "id": {
  370. "m_id": "{DB0A7BFD-7064-4FBA-8E47-66CD17B7E914}"
  371. },
  372. "contracts": [
  373. {
  374. "$type": "SlotTypeContract"
  375. }
  376. ],
  377. "slotName": "In",
  378. "toolTip": "Signal to perform the evaluation when desired.",
  379. "Descriptor": {
  380. "ConnectionType": 1,
  381. "SlotType": 1
  382. }
  383. },
  384. {
  385. "id": {
  386. "m_id": "{31D1434A-1421-4C9B-858E-88C2F44F02B4}"
  387. },
  388. "contracts": [
  389. {
  390. "$type": "SlotTypeContract"
  391. }
  392. ],
  393. "slotName": "True",
  394. "toolTip": "Signaled if the result of the operation is true.",
  395. "Descriptor": {
  396. "ConnectionType": 2,
  397. "SlotType": 1
  398. }
  399. },
  400. {
  401. "id": {
  402. "m_id": "{BA43F000-C315-42FE-8867-9F31562FEC97}"
  403. },
  404. "contracts": [
  405. {
  406. "$type": "SlotTypeContract"
  407. }
  408. ],
  409. "slotName": "False",
  410. "toolTip": "Signaled if the result of the operation is false.",
  411. "Descriptor": {
  412. "ConnectionType": 2,
  413. "SlotType": 1
  414. }
  415. },
  416. {
  417. "id": {
  418. "m_id": "{15270B61-0978-4BDD-A0C0-138FAC7587D9}"
  419. },
  420. "DynamicTypeOverride": 3,
  421. "contracts": [
  422. {
  423. "$type": "SlotTypeContract"
  424. },
  425. null
  426. ],
  427. "slotName": "Value A",
  428. "DisplayDataType": {
  429. "m_type": 3
  430. },
  431. "Descriptor": {
  432. "ConnectionType": 1,
  433. "SlotType": 2
  434. },
  435. "DynamicGroup": {
  436. "Value": 3545012108
  437. },
  438. "IsReference": true,
  439. "VariableReference": {
  440. "m_id": "{FCD90ACD-882A-4EF8-83DB-21849C345B1B}"
  441. }
  442. },
  443. {
  444. "id": {
  445. "m_id": "{B48251BB-44AC-4A35-BAEF-3C387E42A2AF}"
  446. },
  447. "DynamicTypeOverride": 3,
  448. "contracts": [
  449. {
  450. "$type": "SlotTypeContract"
  451. },
  452. null
  453. ],
  454. "slotName": "Value B",
  455. "DisplayDataType": {
  456. "m_type": 3
  457. },
  458. "Descriptor": {
  459. "ConnectionType": 1,
  460. "SlotType": 2
  461. },
  462. "DynamicGroup": {
  463. "Value": 3545012108
  464. },
  465. "IsReference": true,
  466. "VariableReference": {
  467. "m_id": "{E0076D7E-786A-4CDF-B6B7-34C8A7F116FE}"
  468. }
  469. }
  470. ],
  471. "Datums": [
  472. {},
  473. {}
  474. ]
  475. }
  476. }
  477. },
  478. {
  479. "Id": {
  480. "id": 368174508103726
  481. },
  482. "Name": "SC-Node(Less)",
  483. "Components": {
  484. "Component_[13107081264771429889]": {
  485. "$type": "Less",
  486. "Id": 13107081264771429889,
  487. "Slots": [
  488. {
  489. "id": {
  490. "m_id": "{D25E0B87-7866-403A-9C95-156CC4D9F4A3}"
  491. },
  492. "contracts": [
  493. {
  494. "$type": "SlotTypeContract"
  495. }
  496. ],
  497. "slotName": "Result",
  498. "DisplayDataType": {
  499. "m_type": 0
  500. },
  501. "Descriptor": {
  502. "ConnectionType": 2,
  503. "SlotType": 2
  504. }
  505. },
  506. {
  507. "id": {
  508. "m_id": "{DB0A7BFD-7064-4FBA-8E47-66CD17B7E914}"
  509. },
  510. "contracts": [
  511. {
  512. "$type": "SlotTypeContract"
  513. }
  514. ],
  515. "slotName": "In",
  516. "toolTip": "Signal to perform the evaluation when desired.",
  517. "Descriptor": {
  518. "ConnectionType": 1,
  519. "SlotType": 1
  520. }
  521. },
  522. {
  523. "id": {
  524. "m_id": "{31D1434A-1421-4C9B-858E-88C2F44F02B4}"
  525. },
  526. "contracts": [
  527. {
  528. "$type": "SlotTypeContract"
  529. }
  530. ],
  531. "slotName": "True",
  532. "toolTip": "Signaled if the result of the operation is true.",
  533. "Descriptor": {
  534. "ConnectionType": 2,
  535. "SlotType": 1
  536. }
  537. },
  538. {
  539. "id": {
  540. "m_id": "{BA43F000-C315-42FE-8867-9F31562FEC97}"
  541. },
  542. "contracts": [
  543. {
  544. "$type": "SlotTypeContract"
  545. }
  546. ],
  547. "slotName": "False",
  548. "toolTip": "Signaled if the result of the operation is false.",
  549. "Descriptor": {
  550. "ConnectionType": 2,
  551. "SlotType": 1
  552. }
  553. },
  554. {
  555. "id": {
  556. "m_id": "{15270B61-0978-4BDD-A0C0-138FAC7587D9}"
  557. },
  558. "DynamicTypeOverride": 3,
  559. "contracts": [
  560. {
  561. "$type": "SlotTypeContract"
  562. },
  563. null
  564. ],
  565. "slotName": "Value A",
  566. "DisplayDataType": {
  567. "m_type": 3
  568. },
  569. "Descriptor": {
  570. "ConnectionType": 1,
  571. "SlotType": 2
  572. },
  573. "DynamicGroup": {
  574. "Value": 3545012108
  575. },
  576. "IsReference": true,
  577. "VariableReference": {
  578. "m_id": "{FCD90ACD-882A-4EF8-83DB-21849C345B1B}"
  579. }
  580. },
  581. {
  582. "id": {
  583. "m_id": "{B48251BB-44AC-4A35-BAEF-3C387E42A2AF}"
  584. },
  585. "DynamicTypeOverride": 3,
  586. "contracts": [
  587. {
  588. "$type": "SlotTypeContract"
  589. },
  590. null
  591. ],
  592. "slotName": "Value B",
  593. "DisplayDataType": {
  594. "m_type": 3
  595. },
  596. "Descriptor": {
  597. "ConnectionType": 1,
  598. "SlotType": 2
  599. },
  600. "DynamicGroup": {
  601. "Value": 3545012108
  602. },
  603. "IsReference": true,
  604. "VariableReference": {
  605. "m_id": "{FCD90ACD-882A-4EF8-83DB-21849C345B1B}"
  606. }
  607. }
  608. ],
  609. "Datums": [
  610. {},
  611. {}
  612. ]
  613. }
  614. }
  615. },
  616. {
  617. "Id": {
  618. "id": 368140148365358
  619. },
  620. "Name": "SC-Node(Expect False)",
  621. "Components": {
  622. "Component_[16488396651791522594]": {
  623. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  624. "Id": 16488396651791522594,
  625. "Slots": [
  626. {
  627. "isVisibile": false,
  628. "id": {
  629. "m_id": "{7734501A-FF1A-418D-9F9E-2B0015E2675E}"
  630. },
  631. "contracts": [
  632. {
  633. "$type": "SlotTypeContract"
  634. },
  635. null
  636. ],
  637. "slotName": "EntityID: 0",
  638. "Descriptor": {
  639. "ConnectionType": 1,
  640. "SlotType": 2
  641. }
  642. },
  643. {
  644. "id": {
  645. "m_id": "{366837A4-FC64-4F46-A748-95AA605FF399}"
  646. },
  647. "contracts": [
  648. {
  649. "$type": "SlotTypeContract"
  650. },
  651. null
  652. ],
  653. "slotName": "Candidate",
  654. "toolTip": "a value that must be false",
  655. "Descriptor": {
  656. "ConnectionType": 1,
  657. "SlotType": 2
  658. }
  659. },
  660. {
  661. "id": {
  662. "m_id": "{3E5F8FCC-7EA1-49DC-8A89-C0D395B4FFC3}"
  663. },
  664. "contracts": [
  665. {
  666. "$type": "SlotTypeContract"
  667. },
  668. null
  669. ],
  670. "slotName": "Report",
  671. "toolTip": "additional notes for the test report",
  672. "Descriptor": {
  673. "ConnectionType": 1,
  674. "SlotType": 2
  675. }
  676. },
  677. {
  678. "id": {
  679. "m_id": "{56015B0C-B78C-4291-9D3A-998170D5C9CE}"
  680. },
  681. "contracts": [
  682. {
  683. "$type": "SlotTypeContract"
  684. }
  685. ],
  686. "slotName": "In",
  687. "Descriptor": {
  688. "ConnectionType": 1,
  689. "SlotType": 1
  690. }
  691. },
  692. {
  693. "id": {
  694. "m_id": "{955928BC-B10E-430A-9961-66E8F249E972}"
  695. },
  696. "contracts": [
  697. {
  698. "$type": "SlotTypeContract"
  699. }
  700. ],
  701. "slotName": "Out",
  702. "Descriptor": {
  703. "ConnectionType": 2,
  704. "SlotType": 1
  705. }
  706. }
  707. ],
  708. "Datums": [
  709. {
  710. "isOverloadedStorage": false,
  711. "scriptCanvasType": {
  712. "m_type": 1
  713. },
  714. "isNullPointer": false,
  715. "$type": "EntityId",
  716. "value": {
  717. "id": 4276206253
  718. }
  719. },
  720. {
  721. "isOverloadedStorage": false,
  722. "scriptCanvasType": {
  723. "m_type": 0
  724. },
  725. "isNullPointer": false,
  726. "$type": "bool",
  727. "value": false,
  728. "label": "Candidate"
  729. },
  730. {
  731. "isOverloadedStorage": false,
  732. "scriptCanvasType": {
  733. "m_type": 5
  734. },
  735. "isNullPointer": false,
  736. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  737. "value": "",
  738. "label": "Report"
  739. }
  740. ],
  741. "methodType": 2,
  742. "methodName": "Expect False",
  743. "className": "Unit Testing",
  744. "resultSlotIDs": [
  745. {}
  746. ],
  747. "prettyClassName": "Unit Testing"
  748. }
  749. }
  750. },
  751. {
  752. "Id": {
  753. "id": 368144443332654
  754. },
  755. "Name": "SC-Node(Expect False)",
  756. "Components": {
  757. "Component_[16488396651791522594]": {
  758. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  759. "Id": 16488396651791522594,
  760. "Slots": [
  761. {
  762. "isVisibile": false,
  763. "id": {
  764. "m_id": "{7734501A-FF1A-418D-9F9E-2B0015E2675E}"
  765. },
  766. "contracts": [
  767. {
  768. "$type": "SlotTypeContract"
  769. },
  770. null
  771. ],
  772. "slotName": "EntityID: 0",
  773. "Descriptor": {
  774. "ConnectionType": 1,
  775. "SlotType": 2
  776. }
  777. },
  778. {
  779. "id": {
  780. "m_id": "{366837A4-FC64-4F46-A748-95AA605FF399}"
  781. },
  782. "contracts": [
  783. {
  784. "$type": "SlotTypeContract"
  785. },
  786. null
  787. ],
  788. "slotName": "Candidate",
  789. "toolTip": "a value that must be false",
  790. "Descriptor": {
  791. "ConnectionType": 1,
  792. "SlotType": 2
  793. }
  794. },
  795. {
  796. "id": {
  797. "m_id": "{3E5F8FCC-7EA1-49DC-8A89-C0D395B4FFC3}"
  798. },
  799. "contracts": [
  800. {
  801. "$type": "SlotTypeContract"
  802. },
  803. null
  804. ],
  805. "slotName": "Report",
  806. "toolTip": "additional notes for the test report",
  807. "Descriptor": {
  808. "ConnectionType": 1,
  809. "SlotType": 2
  810. }
  811. },
  812. {
  813. "id": {
  814. "m_id": "{56015B0C-B78C-4291-9D3A-998170D5C9CE}"
  815. },
  816. "contracts": [
  817. {
  818. "$type": "SlotTypeContract"
  819. }
  820. ],
  821. "slotName": "In",
  822. "Descriptor": {
  823. "ConnectionType": 1,
  824. "SlotType": 1
  825. }
  826. },
  827. {
  828. "id": {
  829. "m_id": "{955928BC-B10E-430A-9961-66E8F249E972}"
  830. },
  831. "contracts": [
  832. {
  833. "$type": "SlotTypeContract"
  834. }
  835. ],
  836. "slotName": "Out",
  837. "Descriptor": {
  838. "ConnectionType": 2,
  839. "SlotType": 1
  840. }
  841. }
  842. ],
  843. "Datums": [
  844. {
  845. "isOverloadedStorage": false,
  846. "scriptCanvasType": {
  847. "m_type": 1
  848. },
  849. "isNullPointer": false,
  850. "$type": "EntityId",
  851. "value": {
  852. "id": 4276206253
  853. }
  854. },
  855. {
  856. "isOverloadedStorage": false,
  857. "scriptCanvasType": {
  858. "m_type": 0
  859. },
  860. "isNullPointer": false,
  861. "$type": "bool",
  862. "value": false,
  863. "label": "Candidate"
  864. },
  865. {
  866. "isOverloadedStorage": false,
  867. "scriptCanvasType": {
  868. "m_type": 5
  869. },
  870. "isNullPointer": false,
  871. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  872. "value": "",
  873. "label": "Report"
  874. }
  875. ],
  876. "methodType": 2,
  877. "methodName": "Expect False",
  878. "className": "Unit Testing",
  879. "resultSlotIDs": [
  880. {}
  881. ],
  882. "prettyClassName": "Unit Testing"
  883. }
  884. }
  885. },
  886. {
  887. "Id": {
  888. "id": 368148738299950
  889. },
  890. "Name": "SC-Node(Start)",
  891. "Components": {
  892. "Component_[16815389459213621466]": {
  893. "$type": "Start",
  894. "Id": 16815389459213621466,
  895. "Slots": [
  896. {
  897. "id": {
  898. "m_id": "{CC5808F3-2F02-47F1-AB85-15A91B5FE983}"
  899. },
  900. "contracts": [
  901. {
  902. "$type": "SlotTypeContract"
  903. }
  904. ],
  905. "slotName": "Out",
  906. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  907. "Descriptor": {
  908. "ConnectionType": 2,
  909. "SlotType": 1
  910. }
  911. }
  912. ]
  913. }
  914. }
  915. },
  916. {
  917. "Id": {
  918. "id": 368157328234542
  919. },
  920. "Name": "SC-Node(Mark Complete)",
  921. "Components": {
  922. "Component_[2334497669986108458]": {
  923. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  924. "Id": 2334497669986108458,
  925. "Slots": [
  926. {
  927. "isVisibile": false,
  928. "id": {
  929. "m_id": "{605C970E-E760-44C7-AE93-06CE1C92DE77}"
  930. },
  931. "contracts": [
  932. {
  933. "$type": "SlotTypeContract"
  934. },
  935. null
  936. ],
  937. "slotName": "EntityID: 0",
  938. "Descriptor": {
  939. "ConnectionType": 1,
  940. "SlotType": 2
  941. }
  942. },
  943. {
  944. "id": {
  945. "m_id": "{8433B8B2-E73B-488D-9758-FFE3F6519C8A}"
  946. },
  947. "contracts": [
  948. {
  949. "$type": "SlotTypeContract"
  950. },
  951. null
  952. ],
  953. "slotName": "Report",
  954. "toolTip": "additional notes for the test report",
  955. "Descriptor": {
  956. "ConnectionType": 1,
  957. "SlotType": 2
  958. }
  959. },
  960. {
  961. "id": {
  962. "m_id": "{76D0BB2A-077E-4ED4-AC30-A58947DD542A}"
  963. },
  964. "contracts": [
  965. {
  966. "$type": "SlotTypeContract"
  967. }
  968. ],
  969. "slotName": "In",
  970. "Descriptor": {
  971. "ConnectionType": 1,
  972. "SlotType": 1
  973. }
  974. },
  975. {
  976. "id": {
  977. "m_id": "{652315E2-83FD-4953-AC94-CA8DE02D0CBD}"
  978. },
  979. "contracts": [
  980. {
  981. "$type": "SlotTypeContract"
  982. }
  983. ],
  984. "slotName": "Out",
  985. "Descriptor": {
  986. "ConnectionType": 2,
  987. "SlotType": 1
  988. }
  989. }
  990. ],
  991. "Datums": [
  992. {
  993. "isOverloadedStorage": false,
  994. "scriptCanvasType": {
  995. "m_type": 1
  996. },
  997. "isNullPointer": false,
  998. "$type": "EntityId",
  999. "value": {
  1000. "id": 4276206253
  1001. }
  1002. },
  1003. {
  1004. "isOverloadedStorage": false,
  1005. "scriptCanvasType": {
  1006. "m_type": 5
  1007. },
  1008. "isNullPointer": false,
  1009. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1010. "value": "",
  1011. "label": "Report"
  1012. }
  1013. ],
  1014. "methodType": 2,
  1015. "methodName": "Mark Complete",
  1016. "className": "Unit Testing",
  1017. "resultSlotIDs": [
  1018. {}
  1019. ],
  1020. "prettyClassName": "Unit Testing"
  1021. }
  1022. }
  1023. },
  1024. {
  1025. "Id": {
  1026. "id": 368153033267246
  1027. },
  1028. "Name": "SC-Node(Add Failure)",
  1029. "Components": {
  1030. "Component_[8064169176067527016]": {
  1031. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1032. "Id": 8064169176067527016,
  1033. "Slots": [
  1034. {
  1035. "isVisibile": false,
  1036. "id": {
  1037. "m_id": "{8B1FAB1F-0407-490F-9AD3-1D153D7DAA00}"
  1038. },
  1039. "contracts": [
  1040. {
  1041. "$type": "SlotTypeContract"
  1042. },
  1043. null
  1044. ],
  1045. "slotName": "EntityID: 0",
  1046. "Descriptor": {
  1047. "ConnectionType": 1,
  1048. "SlotType": 2
  1049. }
  1050. },
  1051. {
  1052. "id": {
  1053. "m_id": "{19911EAE-D965-483D-9289-758925304348}"
  1054. },
  1055. "contracts": [
  1056. {
  1057. "$type": "SlotTypeContract"
  1058. },
  1059. null
  1060. ],
  1061. "slotName": "Report",
  1062. "toolTip": "additional notes for the test report",
  1063. "Descriptor": {
  1064. "ConnectionType": 1,
  1065. "SlotType": 2
  1066. }
  1067. },
  1068. {
  1069. "id": {
  1070. "m_id": "{364F8C19-D11A-4373-B8FB-A8D7CB474F3D}"
  1071. },
  1072. "contracts": [
  1073. {
  1074. "$type": "SlotTypeContract"
  1075. }
  1076. ],
  1077. "slotName": "In",
  1078. "Descriptor": {
  1079. "ConnectionType": 1,
  1080. "SlotType": 1
  1081. }
  1082. },
  1083. {
  1084. "id": {
  1085. "m_id": "{EBEDBBEB-0EDC-47DE-8356-4337D029ACD9}"
  1086. },
  1087. "contracts": [
  1088. {
  1089. "$type": "SlotTypeContract"
  1090. }
  1091. ],
  1092. "slotName": "Out",
  1093. "Descriptor": {
  1094. "ConnectionType": 2,
  1095. "SlotType": 1
  1096. }
  1097. }
  1098. ],
  1099. "Datums": [
  1100. {
  1101. "isOverloadedStorage": false,
  1102. "scriptCanvasType": {
  1103. "m_type": 1
  1104. },
  1105. "isNullPointer": false,
  1106. "$type": "EntityId",
  1107. "value": {
  1108. "id": 4276206253
  1109. }
  1110. },
  1111. {
  1112. "isOverloadedStorage": false,
  1113. "scriptCanvasType": {
  1114. "m_type": 5
  1115. },
  1116. "isNullPointer": false,
  1117. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1118. "value": "",
  1119. "label": "Report"
  1120. }
  1121. ],
  1122. "methodType": 2,
  1123. "methodName": "Add Failure",
  1124. "className": "Unit Testing",
  1125. "resultSlotIDs": [
  1126. {}
  1127. ],
  1128. "prettyClassName": "Unit Testing"
  1129. }
  1130. }
  1131. },
  1132. {
  1133. "Id": {
  1134. "id": 368165918169134
  1135. },
  1136. "Name": "SC-Node(Add Failure)",
  1137. "Components": {
  1138. "Component_[8064169176067527016]": {
  1139. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1140. "Id": 8064169176067527016,
  1141. "Slots": [
  1142. {
  1143. "isVisibile": false,
  1144. "id": {
  1145. "m_id": "{8B1FAB1F-0407-490F-9AD3-1D153D7DAA00}"
  1146. },
  1147. "contracts": [
  1148. {
  1149. "$type": "SlotTypeContract"
  1150. },
  1151. null
  1152. ],
  1153. "slotName": "EntityID: 0",
  1154. "Descriptor": {
  1155. "ConnectionType": 1,
  1156. "SlotType": 2
  1157. }
  1158. },
  1159. {
  1160. "id": {
  1161. "m_id": "{19911EAE-D965-483D-9289-758925304348}"
  1162. },
  1163. "contracts": [
  1164. {
  1165. "$type": "SlotTypeContract"
  1166. },
  1167. null
  1168. ],
  1169. "slotName": "Report",
  1170. "toolTip": "additional notes for the test report",
  1171. "Descriptor": {
  1172. "ConnectionType": 1,
  1173. "SlotType": 2
  1174. }
  1175. },
  1176. {
  1177. "id": {
  1178. "m_id": "{364F8C19-D11A-4373-B8FB-A8D7CB474F3D}"
  1179. },
  1180. "contracts": [
  1181. {
  1182. "$type": "SlotTypeContract"
  1183. }
  1184. ],
  1185. "slotName": "In",
  1186. "Descriptor": {
  1187. "ConnectionType": 1,
  1188. "SlotType": 1
  1189. }
  1190. },
  1191. {
  1192. "id": {
  1193. "m_id": "{EBEDBBEB-0EDC-47DE-8356-4337D029ACD9}"
  1194. },
  1195. "contracts": [
  1196. {
  1197. "$type": "SlotTypeContract"
  1198. }
  1199. ],
  1200. "slotName": "Out",
  1201. "Descriptor": {
  1202. "ConnectionType": 2,
  1203. "SlotType": 1
  1204. }
  1205. }
  1206. ],
  1207. "Datums": [
  1208. {
  1209. "isOverloadedStorage": false,
  1210. "scriptCanvasType": {
  1211. "m_type": 1
  1212. },
  1213. "isNullPointer": false,
  1214. "$type": "EntityId",
  1215. "value": {
  1216. "id": 4276206253
  1217. }
  1218. },
  1219. {
  1220. "isOverloadedStorage": false,
  1221. "scriptCanvasType": {
  1222. "m_type": 5
  1223. },
  1224. "isNullPointer": false,
  1225. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1226. "value": "",
  1227. "label": "Report"
  1228. }
  1229. ],
  1230. "methodType": 2,
  1231. "methodName": "Add Failure",
  1232. "className": "Unit Testing",
  1233. "resultSlotIDs": [
  1234. {}
  1235. ],
  1236. "prettyClassName": "Unit Testing"
  1237. }
  1238. }
  1239. },
  1240. {
  1241. "Id": {
  1242. "id": 368170213136430
  1243. },
  1244. "Name": "SC-Node(Add Failure)",
  1245. "Components": {
  1246. "Component_[8064169176067527016]": {
  1247. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1248. "Id": 8064169176067527016,
  1249. "Slots": [
  1250. {
  1251. "isVisibile": false,
  1252. "id": {
  1253. "m_id": "{8B1FAB1F-0407-490F-9AD3-1D153D7DAA00}"
  1254. },
  1255. "contracts": [
  1256. {
  1257. "$type": "SlotTypeContract"
  1258. },
  1259. null
  1260. ],
  1261. "slotName": "EntityID: 0",
  1262. "Descriptor": {
  1263. "ConnectionType": 1,
  1264. "SlotType": 2
  1265. }
  1266. },
  1267. {
  1268. "id": {
  1269. "m_id": "{19911EAE-D965-483D-9289-758925304348}"
  1270. },
  1271. "contracts": [
  1272. {
  1273. "$type": "SlotTypeContract"
  1274. },
  1275. null
  1276. ],
  1277. "slotName": "Report",
  1278. "toolTip": "additional notes for the test report",
  1279. "Descriptor": {
  1280. "ConnectionType": 1,
  1281. "SlotType": 2
  1282. }
  1283. },
  1284. {
  1285. "id": {
  1286. "m_id": "{364F8C19-D11A-4373-B8FB-A8D7CB474F3D}"
  1287. },
  1288. "contracts": [
  1289. {
  1290. "$type": "SlotTypeContract"
  1291. }
  1292. ],
  1293. "slotName": "In",
  1294. "Descriptor": {
  1295. "ConnectionType": 1,
  1296. "SlotType": 1
  1297. }
  1298. },
  1299. {
  1300. "id": {
  1301. "m_id": "{EBEDBBEB-0EDC-47DE-8356-4337D029ACD9}"
  1302. },
  1303. "contracts": [
  1304. {
  1305. "$type": "SlotTypeContract"
  1306. }
  1307. ],
  1308. "slotName": "Out",
  1309. "Descriptor": {
  1310. "ConnectionType": 2,
  1311. "SlotType": 1
  1312. }
  1313. }
  1314. ],
  1315. "Datums": [
  1316. {
  1317. "isOverloadedStorage": false,
  1318. "scriptCanvasType": {
  1319. "m_type": 1
  1320. },
  1321. "isNullPointer": false,
  1322. "$type": "EntityId",
  1323. "value": {
  1324. "id": 4276206253
  1325. }
  1326. },
  1327. {
  1328. "isOverloadedStorage": false,
  1329. "scriptCanvasType": {
  1330. "m_type": 5
  1331. },
  1332. "isNullPointer": false,
  1333. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1334. "value": "",
  1335. "label": "Report"
  1336. }
  1337. ],
  1338. "methodType": 2,
  1339. "methodName": "Add Failure",
  1340. "className": "Unit Testing",
  1341. "resultSlotIDs": [
  1342. {}
  1343. ],
  1344. "prettyClassName": "Unit Testing"
  1345. }
  1346. }
  1347. }
  1348. ],
  1349. "m_connections": [
  1350. {
  1351. "Id": {
  1352. "id": 368178803071022
  1353. },
  1354. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Less Than (<): In)",
  1355. "Components": {
  1356. "Component_[13789420970769991461]": {
  1357. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1358. "Id": 13789420970769991461,
  1359. "sourceEndpoint": {
  1360. "nodeId": {
  1361. "id": 368148738299950
  1362. },
  1363. "slotId": {
  1364. "m_id": "{CC5808F3-2F02-47F1-AB85-15A91B5FE983}"
  1365. }
  1366. },
  1367. "targetEndpoint": {
  1368. "nodeId": {
  1369. "id": 368135853398062
  1370. },
  1371. "slotId": {
  1372. "m_id": "{DB0A7BFD-7064-4FBA-8E47-66CD17B7E914}"
  1373. }
  1374. }
  1375. }
  1376. }
  1377. },
  1378. {
  1379. "Id": {
  1380. "id": 368183098038318
  1381. },
  1382. "Name": "srcEndpoint=(Less Than (<): True), destEndpoint=(Expect True: In)",
  1383. "Components": {
  1384. "Component_[16226800350284113934]": {
  1385. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1386. "Id": 16226800350284113934,
  1387. "sourceEndpoint": {
  1388. "nodeId": {
  1389. "id": 368135853398062
  1390. },
  1391. "slotId": {
  1392. "m_id": "{31D1434A-1421-4C9B-858E-88C2F44F02B4}"
  1393. }
  1394. },
  1395. "targetEndpoint": {
  1396. "nodeId": {
  1397. "id": 368161623201838
  1398. },
  1399. "slotId": {
  1400. "m_id": "{A8D0CE92-B7C5-43E0-A388-10A0C2F11AE0}"
  1401. }
  1402. }
  1403. }
  1404. }
  1405. },
  1406. {
  1407. "Id": {
  1408. "id": 368187393005614
  1409. },
  1410. "Name": "srcEndpoint=(Less Than (<): False), destEndpoint=(Add Failure: In)",
  1411. "Components": {
  1412. "Component_[5210089326338973775]": {
  1413. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1414. "Id": 5210089326338973775,
  1415. "sourceEndpoint": {
  1416. "nodeId": {
  1417. "id": 368135853398062
  1418. },
  1419. "slotId": {
  1420. "m_id": "{BA43F000-C315-42FE-8867-9F31562FEC97}"
  1421. }
  1422. },
  1423. "targetEndpoint": {
  1424. "nodeId": {
  1425. "id": 368170213136430
  1426. },
  1427. "slotId": {
  1428. "m_id": "{364F8C19-D11A-4373-B8FB-A8D7CB474F3D}"
  1429. }
  1430. }
  1431. }
  1432. }
  1433. },
  1434. {
  1435. "Id": {
  1436. "id": 368191687972910
  1437. },
  1438. "Name": "srcEndpoint=(Less Than (<): Result), destEndpoint=(Expect True: Candidate)",
  1439. "Components": {
  1440. "Component_[12298623332325050661]": {
  1441. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1442. "Id": 12298623332325050661,
  1443. "sourceEndpoint": {
  1444. "nodeId": {
  1445. "id": 368135853398062
  1446. },
  1447. "slotId": {
  1448. "m_id": "{D25E0B87-7866-403A-9C95-156CC4D9F4A3}"
  1449. }
  1450. },
  1451. "targetEndpoint": {
  1452. "nodeId": {
  1453. "id": 368161623201838
  1454. },
  1455. "slotId": {
  1456. "m_id": "{32DCB16B-1D5F-46EF-8C1C-2B3681989F90}"
  1457. }
  1458. }
  1459. }
  1460. }
  1461. },
  1462. {
  1463. "Id": {
  1464. "id": 368195982940206
  1465. },
  1466. "Name": "srcEndpoint=(Expect True: Out), destEndpoint=(Less Than (<): In)",
  1467. "Components": {
  1468. "Component_[3321859130529062307]": {
  1469. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1470. "Id": 3321859130529062307,
  1471. "sourceEndpoint": {
  1472. "nodeId": {
  1473. "id": 368161623201838
  1474. },
  1475. "slotId": {
  1476. "m_id": "{3631FC4E-981B-4438-A1B0-2B363CE58A06}"
  1477. }
  1478. },
  1479. "targetEndpoint": {
  1480. "nodeId": {
  1481. "id": 368131558430766
  1482. },
  1483. "slotId": {
  1484. "m_id": "{DB0A7BFD-7064-4FBA-8E47-66CD17B7E914}"
  1485. }
  1486. }
  1487. }
  1488. }
  1489. },
  1490. {
  1491. "Id": {
  1492. "id": 368200277907502
  1493. },
  1494. "Name": "srcEndpoint=(Less Than (<): True), destEndpoint=(Add Failure: In)",
  1495. "Components": {
  1496. "Component_[11078479160730855685]": {
  1497. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1498. "Id": 11078479160730855685,
  1499. "sourceEndpoint": {
  1500. "nodeId": {
  1501. "id": 368131558430766
  1502. },
  1503. "slotId": {
  1504. "m_id": "{31D1434A-1421-4C9B-858E-88C2F44F02B4}"
  1505. }
  1506. },
  1507. "targetEndpoint": {
  1508. "nodeId": {
  1509. "id": 368165918169134
  1510. },
  1511. "slotId": {
  1512. "m_id": "{364F8C19-D11A-4373-B8FB-A8D7CB474F3D}"
  1513. }
  1514. }
  1515. }
  1516. }
  1517. },
  1518. {
  1519. "Id": {
  1520. "id": 368204572874798
  1521. },
  1522. "Name": "srcEndpoint=(Less Than (<): False), destEndpoint=(Expect False: In)",
  1523. "Components": {
  1524. "Component_[16777373398707283819]": {
  1525. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1526. "Id": 16777373398707283819,
  1527. "sourceEndpoint": {
  1528. "nodeId": {
  1529. "id": 368131558430766
  1530. },
  1531. "slotId": {
  1532. "m_id": "{BA43F000-C315-42FE-8867-9F31562FEC97}"
  1533. }
  1534. },
  1535. "targetEndpoint": {
  1536. "nodeId": {
  1537. "id": 368144443332654
  1538. },
  1539. "slotId": {
  1540. "m_id": "{56015B0C-B78C-4291-9D3A-998170D5C9CE}"
  1541. }
  1542. }
  1543. }
  1544. }
  1545. },
  1546. {
  1547. "Id": {
  1548. "id": 368208867842094
  1549. },
  1550. "Name": "srcEndpoint=(Less Than (<): Result), destEndpoint=(Expect False: Candidate)",
  1551. "Components": {
  1552. "Component_[441086303518778946]": {
  1553. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1554. "Id": 441086303518778946,
  1555. "sourceEndpoint": {
  1556. "nodeId": {
  1557. "id": 368131558430766
  1558. },
  1559. "slotId": {
  1560. "m_id": "{D25E0B87-7866-403A-9C95-156CC4D9F4A3}"
  1561. }
  1562. },
  1563. "targetEndpoint": {
  1564. "nodeId": {
  1565. "id": 368144443332654
  1566. },
  1567. "slotId": {
  1568. "m_id": "{366837A4-FC64-4F46-A748-95AA605FF399}"
  1569. }
  1570. }
  1571. }
  1572. }
  1573. },
  1574. {
  1575. "Id": {
  1576. "id": 368213162809390
  1577. },
  1578. "Name": "srcEndpoint=(Less Than (<): Result), destEndpoint=(Expect False: Candidate)",
  1579. "Components": {
  1580. "Component_[9675476242759278053]": {
  1581. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1582. "Id": 9675476242759278053,
  1583. "sourceEndpoint": {
  1584. "nodeId": {
  1585. "id": 368174508103726
  1586. },
  1587. "slotId": {
  1588. "m_id": "{D25E0B87-7866-403A-9C95-156CC4D9F4A3}"
  1589. }
  1590. },
  1591. "targetEndpoint": {
  1592. "nodeId": {
  1593. "id": 368140148365358
  1594. },
  1595. "slotId": {
  1596. "m_id": "{366837A4-FC64-4F46-A748-95AA605FF399}"
  1597. }
  1598. }
  1599. }
  1600. }
  1601. },
  1602. {
  1603. "Id": {
  1604. "id": 368217457776686
  1605. },
  1606. "Name": "srcEndpoint=(Less Than (<): False), destEndpoint=(Expect False: In)",
  1607. "Components": {
  1608. "Component_[12746185664834737198]": {
  1609. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1610. "Id": 12746185664834737198,
  1611. "sourceEndpoint": {
  1612. "nodeId": {
  1613. "id": 368174508103726
  1614. },
  1615. "slotId": {
  1616. "m_id": "{BA43F000-C315-42FE-8867-9F31562FEC97}"
  1617. }
  1618. },
  1619. "targetEndpoint": {
  1620. "nodeId": {
  1621. "id": 368140148365358
  1622. },
  1623. "slotId": {
  1624. "m_id": "{56015B0C-B78C-4291-9D3A-998170D5C9CE}"
  1625. }
  1626. }
  1627. }
  1628. }
  1629. },
  1630. {
  1631. "Id": {
  1632. "id": 368221752743982
  1633. },
  1634. "Name": "srcEndpoint=(Less Than (<): True), destEndpoint=(Add Failure: In)",
  1635. "Components": {
  1636. "Component_[8959288689597612899]": {
  1637. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1638. "Id": 8959288689597612899,
  1639. "sourceEndpoint": {
  1640. "nodeId": {
  1641. "id": 368174508103726
  1642. },
  1643. "slotId": {
  1644. "m_id": "{31D1434A-1421-4C9B-858E-88C2F44F02B4}"
  1645. }
  1646. },
  1647. "targetEndpoint": {
  1648. "nodeId": {
  1649. "id": 368153033267246
  1650. },
  1651. "slotId": {
  1652. "m_id": "{364F8C19-D11A-4373-B8FB-A8D7CB474F3D}"
  1653. }
  1654. }
  1655. }
  1656. }
  1657. },
  1658. {
  1659. "Id": {
  1660. "id": 368226047711278
  1661. },
  1662. "Name": "srcEndpoint=(Expect False: Out), destEndpoint=(Mark Complete: In)",
  1663. "Components": {
  1664. "Component_[14802270535114914880]": {
  1665. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1666. "Id": 14802270535114914880,
  1667. "sourceEndpoint": {
  1668. "nodeId": {
  1669. "id": 368140148365358
  1670. },
  1671. "slotId": {
  1672. "m_id": "{955928BC-B10E-430A-9961-66E8F249E972}"
  1673. }
  1674. },
  1675. "targetEndpoint": {
  1676. "nodeId": {
  1677. "id": 368157328234542
  1678. },
  1679. "slotId": {
  1680. "m_id": "{76D0BB2A-077E-4ED4-AC30-A58947DD542A}"
  1681. }
  1682. }
  1683. }
  1684. }
  1685. },
  1686. {
  1687. "Id": {
  1688. "id": 368230342678574
  1689. },
  1690. "Name": "srcEndpoint=(Expect False: Out), destEndpoint=(Less Than (<): In)",
  1691. "Components": {
  1692. "Component_[16308322636428933885]": {
  1693. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1694. "Id": 16308322636428933885,
  1695. "sourceEndpoint": {
  1696. "nodeId": {
  1697. "id": 368144443332654
  1698. },
  1699. "slotId": {
  1700. "m_id": "{955928BC-B10E-430A-9961-66E8F249E972}"
  1701. }
  1702. },
  1703. "targetEndpoint": {
  1704. "nodeId": {
  1705. "id": 368174508103726
  1706. },
  1707. "slotId": {
  1708. "m_id": "{DB0A7BFD-7064-4FBA-8E47-66CD17B7E914}"
  1709. }
  1710. }
  1711. }
  1712. }
  1713. }
  1714. ]
  1715. },
  1716. "m_assetType": "{6C756531-0020-7661-6C75-6500227B3234}",
  1717. "versionData": {
  1718. "_grammarVersion": 1,
  1719. "_runtimeVersion": 1,
  1720. "_fileVersion": 1
  1721. },
  1722. "m_variableCounter": 15,
  1723. "GraphCanvasData": [
  1724. {
  1725. "Key": {
  1726. "id": 368127263463470
  1727. },
  1728. "Value": {
  1729. "ComponentData": {
  1730. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  1731. "$type": "SceneComponentSaveData",
  1732. "ViewParams": {
  1733. "Scale": 0.6580294,
  1734. "AnchorX": 577.4818115234375,
  1735. "AnchorY": -1018.191650390625
  1736. }
  1737. }
  1738. }
  1739. }
  1740. },
  1741. {
  1742. "Key": {
  1743. "id": 368131558430766
  1744. },
  1745. "Value": {
  1746. "ComponentData": {
  1747. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1748. "$type": "GeneralNodeTitleComponentSaveData",
  1749. "PaletteOverride": "MathNodeTitlePalette"
  1750. },
  1751. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1752. "$type": "GeometrySaveData",
  1753. "Position": [
  1754. 980.0,
  1755. -580.0
  1756. ]
  1757. },
  1758. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1759. "$type": "StylingComponentSaveData",
  1760. "SubStyle": ".comparison"
  1761. },
  1762. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1763. "$type": "PersistentIdComponentSaveData",
  1764. "PersistentId": "{F1F78AC6-02BE-49FF-ABE2-49A461FAB23A}"
  1765. }
  1766. }
  1767. }
  1768. },
  1769. {
  1770. "Key": {
  1771. "id": 368135853398062
  1772. },
  1773. "Value": {
  1774. "ComponentData": {
  1775. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1776. "$type": "GeneralNodeTitleComponentSaveData",
  1777. "PaletteOverride": "MathNodeTitlePalette"
  1778. },
  1779. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1780. "$type": "GeometrySaveData",
  1781. "Position": [
  1782. 340.0,
  1783. -580.0
  1784. ]
  1785. },
  1786. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1787. "$type": "StylingComponentSaveData",
  1788. "SubStyle": ".comparison"
  1789. },
  1790. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1791. "$type": "PersistentIdComponentSaveData",
  1792. "PersistentId": "{F69532B9-6598-4347-ABD0-E1CD7B1BA519}"
  1793. }
  1794. }
  1795. }
  1796. },
  1797. {
  1798. "Key": {
  1799. "id": 368140148365358
  1800. },
  1801. "Value": {
  1802. "ComponentData": {
  1803. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1804. "$type": "GeneralNodeTitleComponentSaveData",
  1805. "PaletteOverride": "MethodNodeTitlePalette"
  1806. },
  1807. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1808. "$type": "GeometrySaveData",
  1809. "Position": [
  1810. 1700.0,
  1811. -240.0
  1812. ]
  1813. },
  1814. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1815. "$type": "StylingComponentSaveData",
  1816. "SubStyle": ".method"
  1817. },
  1818. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1819. "$type": "PersistentIdComponentSaveData",
  1820. "PersistentId": "{828B6573-C65F-4235-ADAE-1A9892E6D4F6}"
  1821. }
  1822. }
  1823. }
  1824. },
  1825. {
  1826. "Key": {
  1827. "id": 368144443332654
  1828. },
  1829. "Value": {
  1830. "ComponentData": {
  1831. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1832. "$type": "GeneralNodeTitleComponentSaveData",
  1833. "PaletteOverride": "MethodNodeTitlePalette"
  1834. },
  1835. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1836. "$type": "GeometrySaveData",
  1837. "Position": [
  1838. 1360.0,
  1839. -540.0
  1840. ]
  1841. },
  1842. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1843. "$type": "StylingComponentSaveData",
  1844. "SubStyle": ".method"
  1845. },
  1846. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1847. "$type": "PersistentIdComponentSaveData",
  1848. "PersistentId": "{5E07B17D-3C6A-4EF0-A8DE-18245A5EA37D}"
  1849. }
  1850. }
  1851. }
  1852. },
  1853. {
  1854. "Key": {
  1855. "id": 368148738299950
  1856. },
  1857. "Value": {
  1858. "ComponentData": {
  1859. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1860. "$type": "GeneralNodeTitleComponentSaveData",
  1861. "PaletteOverride": "TimeNodeTitlePalette"
  1862. },
  1863. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1864. "$type": "GeometrySaveData",
  1865. "Position": [
  1866. 140.0,
  1867. -580.0
  1868. ]
  1869. },
  1870. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1871. "$type": "StylingComponentSaveData",
  1872. "SubStyle": ".time"
  1873. },
  1874. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1875. "$type": "PersistentIdComponentSaveData",
  1876. "PersistentId": "{9C20F353-185D-4DCB-9246-4EA8FFCE3976}"
  1877. }
  1878. }
  1879. }
  1880. },
  1881. {
  1882. "Key": {
  1883. "id": 368153033267246
  1884. },
  1885. "Value": {
  1886. "ComponentData": {
  1887. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1888. "$type": "GeneralNodeTitleComponentSaveData",
  1889. "PaletteOverride": "MethodNodeTitlePalette"
  1890. },
  1891. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1892. "$type": "GeometrySaveData",
  1893. "Position": [
  1894. 1700.0,
  1895. -440.0
  1896. ]
  1897. },
  1898. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1899. "$type": "StylingComponentSaveData",
  1900. "SubStyle": ".method"
  1901. },
  1902. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1903. "$type": "PersistentIdComponentSaveData",
  1904. "PersistentId": "{CB70D2AC-B7F1-4204-84CC-0A0D246D5E8C}"
  1905. }
  1906. }
  1907. }
  1908. },
  1909. {
  1910. "Key": {
  1911. "id": 368157328234542
  1912. },
  1913. "Value": {
  1914. "ComponentData": {
  1915. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1916. "$type": "GeneralNodeTitleComponentSaveData",
  1917. "PaletteOverride": "MethodNodeTitlePalette"
  1918. },
  1919. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1920. "$type": "GeometrySaveData",
  1921. "Position": [
  1922. 2040.0,
  1923. -480.0
  1924. ]
  1925. },
  1926. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1927. "$type": "StylingComponentSaveData",
  1928. "SubStyle": ".method"
  1929. },
  1930. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1931. "$type": "PersistentIdComponentSaveData",
  1932. "PersistentId": "{DC7D5E88-8919-4CD0-921F-27B4AEF0A1E0}"
  1933. }
  1934. }
  1935. }
  1936. },
  1937. {
  1938. "Key": {
  1939. "id": 368161623201838
  1940. },
  1941. "Value": {
  1942. "ComponentData": {
  1943. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1944. "$type": "GeneralNodeTitleComponentSaveData",
  1945. "PaletteOverride": "MethodNodeTitlePalette"
  1946. },
  1947. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1948. "$type": "GeometrySaveData",
  1949. "Position": [
  1950. 680.0,
  1951. -580.0
  1952. ]
  1953. },
  1954. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1955. "$type": "StylingComponentSaveData",
  1956. "SubStyle": ".method"
  1957. },
  1958. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1959. "$type": "PersistentIdComponentSaveData",
  1960. "PersistentId": "{E9D4DA3A-6FA9-464D-89DF-D34240667991}"
  1961. }
  1962. }
  1963. }
  1964. },
  1965. {
  1966. "Key": {
  1967. "id": 368165918169134
  1968. },
  1969. "Value": {
  1970. "ComponentData": {
  1971. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1972. "$type": "GeneralNodeTitleComponentSaveData",
  1973. "PaletteOverride": "MethodNodeTitlePalette"
  1974. },
  1975. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1976. "$type": "GeometrySaveData",
  1977. "Position": [
  1978. 1360.0,
  1979. -740.0
  1980. ]
  1981. },
  1982. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1983. "$type": "StylingComponentSaveData",
  1984. "SubStyle": ".method"
  1985. },
  1986. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1987. "$type": "PersistentIdComponentSaveData",
  1988. "PersistentId": "{07572001-AB4B-441B-9668-D85C873A79FD}"
  1989. }
  1990. }
  1991. }
  1992. },
  1993. {
  1994. "Key": {
  1995. "id": 368170213136430
  1996. },
  1997. "Value": {
  1998. "ComponentData": {
  1999. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2000. "$type": "GeneralNodeTitleComponentSaveData",
  2001. "PaletteOverride": "MethodNodeTitlePalette"
  2002. },
  2003. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2004. "$type": "GeometrySaveData",
  2005. "Position": [
  2006. 680.0,
  2007. -360.0
  2008. ]
  2009. },
  2010. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2011. "$type": "StylingComponentSaveData",
  2012. "SubStyle": ".method"
  2013. },
  2014. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2015. "$type": "PersistentIdComponentSaveData",
  2016. "PersistentId": "{FD677CA4-BB12-4986-AB3E-5E95E07C143F}"
  2017. }
  2018. }
  2019. }
  2020. },
  2021. {
  2022. "Key": {
  2023. "id": 368174508103726
  2024. },
  2025. "Value": {
  2026. "ComponentData": {
  2027. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2028. "$type": "GeneralNodeTitleComponentSaveData",
  2029. "PaletteOverride": "MathNodeTitlePalette"
  2030. },
  2031. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2032. "$type": "GeometrySaveData",
  2033. "Position": [
  2034. 1320.0,
  2035. -280.0
  2036. ]
  2037. },
  2038. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2039. "$type": "StylingComponentSaveData",
  2040. "SubStyle": ".comparison"
  2041. },
  2042. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2043. "$type": "PersistentIdComponentSaveData",
  2044. "PersistentId": "{8D0D326E-3D8F-4685-A4F9-D711B01905DE}"
  2045. }
  2046. }
  2047. }
  2048. }
  2049. ],
  2050. "StatisticsHelper": {
  2051. "InstanceCounter": [
  2052. {
  2053. "Key": 1050222979521486012,
  2054. "Value": 1
  2055. },
  2056. {
  2057. "Key": 3765469619007655124,
  2058. "Value": 3
  2059. },
  2060. {
  2061. "Key": 4199610336680704683,
  2062. "Value": 1
  2063. },
  2064. {
  2065. "Key": 4511496914810470227,
  2066. "Value": 2
  2067. },
  2068. {
  2069. "Key": 6840657073857873079,
  2070. "Value": 1
  2071. },
  2072. {
  2073. "Key": 6948473238498171382,
  2074. "Value": 3
  2075. }
  2076. ]
  2077. }
  2078. }
  2079. }
  2080. }
  2081. }
  2082. }