LY_SC_UnitTest_CompareGreater.scriptcanvas 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 717389709006894
  9. },
  10. "Name": "scriptcanvas/unittests/ly_sc_unittest_comparegreater.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": 717406888876078
  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": 717419773777966
  205. },
  206. "Name": "SC-Node(Expect False)",
  207. "Components": {
  208. "Component_[16488396651791522594]": {
  209. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  210. "Id": 16488396651791522594,
  211. "Slots": [
  212. {
  213. "isVisibile": false,
  214. "id": {
  215. "m_id": "{7734501A-FF1A-418D-9F9E-2B0015E2675E}"
  216. },
  217. "contracts": [
  218. {
  219. "$type": "SlotTypeContract"
  220. },
  221. null
  222. ],
  223. "slotName": "EntityID: 0",
  224. "Descriptor": {
  225. "ConnectionType": 1,
  226. "SlotType": 2
  227. }
  228. },
  229. {
  230. "id": {
  231. "m_id": "{366837A4-FC64-4F46-A748-95AA605FF399}"
  232. },
  233. "contracts": [
  234. {
  235. "$type": "SlotTypeContract"
  236. },
  237. null
  238. ],
  239. "slotName": "Candidate",
  240. "toolTip": "a value that must be false",
  241. "Descriptor": {
  242. "ConnectionType": 1,
  243. "SlotType": 2
  244. }
  245. },
  246. {
  247. "id": {
  248. "m_id": "{3E5F8FCC-7EA1-49DC-8A89-C0D395B4FFC3}"
  249. },
  250. "contracts": [
  251. {
  252. "$type": "SlotTypeContract"
  253. },
  254. null
  255. ],
  256. "slotName": "Report",
  257. "toolTip": "additional notes for the test report",
  258. "Descriptor": {
  259. "ConnectionType": 1,
  260. "SlotType": 2
  261. }
  262. },
  263. {
  264. "id": {
  265. "m_id": "{56015B0C-B78C-4291-9D3A-998170D5C9CE}"
  266. },
  267. "contracts": [
  268. {
  269. "$type": "SlotTypeContract"
  270. }
  271. ],
  272. "slotName": "In",
  273. "Descriptor": {
  274. "ConnectionType": 1,
  275. "SlotType": 1
  276. }
  277. },
  278. {
  279. "id": {
  280. "m_id": "{955928BC-B10E-430A-9961-66E8F249E972}"
  281. },
  282. "contracts": [
  283. {
  284. "$type": "SlotTypeContract"
  285. }
  286. ],
  287. "slotName": "Out",
  288. "Descriptor": {
  289. "ConnectionType": 2,
  290. "SlotType": 1
  291. }
  292. }
  293. ],
  294. "Datums": [
  295. {
  296. "isOverloadedStorage": false,
  297. "scriptCanvasType": {
  298. "m_type": 1
  299. },
  300. "isNullPointer": false,
  301. "$type": "EntityId",
  302. "value": {
  303. "id": 4276206253
  304. }
  305. },
  306. {
  307. "isOverloadedStorage": false,
  308. "scriptCanvasType": {
  309. "m_type": 0
  310. },
  311. "isNullPointer": false,
  312. "$type": "bool",
  313. "value": false,
  314. "label": "Candidate"
  315. },
  316. {
  317. "isOverloadedStorage": false,
  318. "scriptCanvasType": {
  319. "m_type": 5
  320. },
  321. "isNullPointer": false,
  322. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  323. "value": "",
  324. "label": "Report"
  325. }
  326. ],
  327. "methodType": 2,
  328. "methodName": "Expect False",
  329. "className": "Unit Testing",
  330. "resultSlotIDs": [
  331. {}
  332. ],
  333. "prettyClassName": "Unit Testing"
  334. }
  335. }
  336. },
  337. {
  338. "Id": {
  339. "id": 717428363712558
  340. },
  341. "Name": "SC-Node(Expect False)",
  342. "Components": {
  343. "Component_[16488396651791522594]": {
  344. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  345. "Id": 16488396651791522594,
  346. "Slots": [
  347. {
  348. "isVisibile": false,
  349. "id": {
  350. "m_id": "{7734501A-FF1A-418D-9F9E-2B0015E2675E}"
  351. },
  352. "contracts": [
  353. {
  354. "$type": "SlotTypeContract"
  355. },
  356. null
  357. ],
  358. "slotName": "EntityID: 0",
  359. "Descriptor": {
  360. "ConnectionType": 1,
  361. "SlotType": 2
  362. }
  363. },
  364. {
  365. "id": {
  366. "m_id": "{366837A4-FC64-4F46-A748-95AA605FF399}"
  367. },
  368. "contracts": [
  369. {
  370. "$type": "SlotTypeContract"
  371. },
  372. null
  373. ],
  374. "slotName": "Candidate",
  375. "toolTip": "a value that must be false",
  376. "Descriptor": {
  377. "ConnectionType": 1,
  378. "SlotType": 2
  379. }
  380. },
  381. {
  382. "id": {
  383. "m_id": "{3E5F8FCC-7EA1-49DC-8A89-C0D395B4FFC3}"
  384. },
  385. "contracts": [
  386. {
  387. "$type": "SlotTypeContract"
  388. },
  389. null
  390. ],
  391. "slotName": "Report",
  392. "toolTip": "additional notes for the test report",
  393. "Descriptor": {
  394. "ConnectionType": 1,
  395. "SlotType": 2
  396. }
  397. },
  398. {
  399. "id": {
  400. "m_id": "{56015B0C-B78C-4291-9D3A-998170D5C9CE}"
  401. },
  402. "contracts": [
  403. {
  404. "$type": "SlotTypeContract"
  405. }
  406. ],
  407. "slotName": "In",
  408. "Descriptor": {
  409. "ConnectionType": 1,
  410. "SlotType": 1
  411. }
  412. },
  413. {
  414. "id": {
  415. "m_id": "{955928BC-B10E-430A-9961-66E8F249E972}"
  416. },
  417. "contracts": [
  418. {
  419. "$type": "SlotTypeContract"
  420. }
  421. ],
  422. "slotName": "Out",
  423. "Descriptor": {
  424. "ConnectionType": 2,
  425. "SlotType": 1
  426. }
  427. }
  428. ],
  429. "Datums": [
  430. {
  431. "isOverloadedStorage": false,
  432. "scriptCanvasType": {
  433. "m_type": 1
  434. },
  435. "isNullPointer": false,
  436. "$type": "EntityId",
  437. "value": {
  438. "id": 4276206253
  439. }
  440. },
  441. {
  442. "isOverloadedStorage": false,
  443. "scriptCanvasType": {
  444. "m_type": 0
  445. },
  446. "isNullPointer": false,
  447. "$type": "bool",
  448. "value": false,
  449. "label": "Candidate"
  450. },
  451. {
  452. "isOverloadedStorage": false,
  453. "scriptCanvasType": {
  454. "m_type": 5
  455. },
  456. "isNullPointer": false,
  457. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  458. "value": "",
  459. "label": "Report"
  460. }
  461. ],
  462. "methodType": 2,
  463. "methodName": "Expect False",
  464. "className": "Unit Testing",
  465. "resultSlotIDs": [
  466. {}
  467. ],
  468. "prettyClassName": "Unit Testing"
  469. }
  470. }
  471. },
  472. {
  473. "Id": {
  474. "id": 717398298941486
  475. },
  476. "Name": "SC-Node(Greater)",
  477. "Components": {
  478. "Component_[16703895326861745957]": {
  479. "$type": "Greater",
  480. "Id": 16703895326861745957,
  481. "Slots": [
  482. {
  483. "id": {
  484. "m_id": "{848A095E-31F0-497A-BEE5-C6599586AC01}"
  485. },
  486. "contracts": [
  487. {
  488. "$type": "SlotTypeContract"
  489. }
  490. ],
  491. "slotName": "Result",
  492. "DisplayDataType": {
  493. "m_type": 0
  494. },
  495. "Descriptor": {
  496. "ConnectionType": 2,
  497. "SlotType": 2
  498. }
  499. },
  500. {
  501. "id": {
  502. "m_id": "{AC77DF13-A657-426E-9A18-CA79BF513FCC}"
  503. },
  504. "contracts": [
  505. {
  506. "$type": "SlotTypeContract"
  507. }
  508. ],
  509. "slotName": "In",
  510. "toolTip": "Signal to perform the evaluation when desired.",
  511. "Descriptor": {
  512. "ConnectionType": 1,
  513. "SlotType": 1
  514. }
  515. },
  516. {
  517. "id": {
  518. "m_id": "{5DA61E62-C174-4C0F-87AE-6BC7F153846F}"
  519. },
  520. "contracts": [
  521. {
  522. "$type": "SlotTypeContract"
  523. }
  524. ],
  525. "slotName": "True",
  526. "toolTip": "Signaled if the result of the operation is true.",
  527. "Descriptor": {
  528. "ConnectionType": 2,
  529. "SlotType": 1
  530. }
  531. },
  532. {
  533. "id": {
  534. "m_id": "{6DE6B17D-094D-4339-A457-0C219888A50E}"
  535. },
  536. "contracts": [
  537. {
  538. "$type": "SlotTypeContract"
  539. }
  540. ],
  541. "slotName": "False",
  542. "toolTip": "Signaled if the result of the operation is false.",
  543. "Descriptor": {
  544. "ConnectionType": 2,
  545. "SlotType": 1
  546. }
  547. },
  548. {
  549. "id": {
  550. "m_id": "{E3F8F261-C8CA-4045-BAD3-EF1D93086409}"
  551. },
  552. "DynamicTypeOverride": 3,
  553. "contracts": [
  554. {
  555. "$type": "SlotTypeContract"
  556. },
  557. null
  558. ],
  559. "slotName": "Value A",
  560. "DisplayDataType": {
  561. "m_type": 3
  562. },
  563. "Descriptor": {
  564. "ConnectionType": 1,
  565. "SlotType": 2
  566. },
  567. "DynamicGroup": {
  568. "Value": 3545012108
  569. },
  570. "IsReference": true,
  571. "VariableReference": {
  572. "m_id": "{E0076D7E-786A-4CDF-B6B7-34C8A7F116FE}"
  573. }
  574. },
  575. {
  576. "id": {
  577. "m_id": "{2E0352A9-E80B-40C4-8995-3741893B5D4C}"
  578. },
  579. "DynamicTypeOverride": 3,
  580. "contracts": [
  581. {
  582. "$type": "SlotTypeContract"
  583. },
  584. null
  585. ],
  586. "slotName": "Value B",
  587. "DisplayDataType": {
  588. "m_type": 3
  589. },
  590. "Descriptor": {
  591. "ConnectionType": 1,
  592. "SlotType": 2
  593. },
  594. "DynamicGroup": {
  595. "Value": 3545012108
  596. },
  597. "IsReference": true,
  598. "VariableReference": {
  599. "m_id": "{FCD90ACD-882A-4EF8-83DB-21849C345B1B}"
  600. }
  601. }
  602. ],
  603. "Datums": [
  604. {},
  605. {}
  606. ]
  607. }
  608. }
  609. },
  610. {
  611. "Id": {
  612. "id": 717394003974190
  613. },
  614. "Name": "SC-Node(Greater)",
  615. "Components": {
  616. "Component_[16703895326861745957]": {
  617. "$type": "Greater",
  618. "Id": 16703895326861745957,
  619. "Slots": [
  620. {
  621. "id": {
  622. "m_id": "{848A095E-31F0-497A-BEE5-C6599586AC01}"
  623. },
  624. "contracts": [
  625. {
  626. "$type": "SlotTypeContract"
  627. }
  628. ],
  629. "slotName": "Result",
  630. "DisplayDataType": {
  631. "m_type": 0
  632. },
  633. "Descriptor": {
  634. "ConnectionType": 2,
  635. "SlotType": 2
  636. }
  637. },
  638. {
  639. "id": {
  640. "m_id": "{AC77DF13-A657-426E-9A18-CA79BF513FCC}"
  641. },
  642. "contracts": [
  643. {
  644. "$type": "SlotTypeContract"
  645. }
  646. ],
  647. "slotName": "In",
  648. "toolTip": "Signal to perform the evaluation when desired.",
  649. "Descriptor": {
  650. "ConnectionType": 1,
  651. "SlotType": 1
  652. }
  653. },
  654. {
  655. "id": {
  656. "m_id": "{5DA61E62-C174-4C0F-87AE-6BC7F153846F}"
  657. },
  658. "contracts": [
  659. {
  660. "$type": "SlotTypeContract"
  661. }
  662. ],
  663. "slotName": "True",
  664. "toolTip": "Signaled if the result of the operation is true.",
  665. "Descriptor": {
  666. "ConnectionType": 2,
  667. "SlotType": 1
  668. }
  669. },
  670. {
  671. "id": {
  672. "m_id": "{6DE6B17D-094D-4339-A457-0C219888A50E}"
  673. },
  674. "contracts": [
  675. {
  676. "$type": "SlotTypeContract"
  677. }
  678. ],
  679. "slotName": "False",
  680. "toolTip": "Signaled if the result of the operation is false.",
  681. "Descriptor": {
  682. "ConnectionType": 2,
  683. "SlotType": 1
  684. }
  685. },
  686. {
  687. "id": {
  688. "m_id": "{E3F8F261-C8CA-4045-BAD3-EF1D93086409}"
  689. },
  690. "DynamicTypeOverride": 3,
  691. "contracts": [
  692. {
  693. "$type": "SlotTypeContract"
  694. },
  695. null
  696. ],
  697. "slotName": "Value A",
  698. "DisplayDataType": {
  699. "m_type": 3
  700. },
  701. "Descriptor": {
  702. "ConnectionType": 1,
  703. "SlotType": 2
  704. },
  705. "DynamicGroup": {
  706. "Value": 3545012108
  707. },
  708. "IsReference": true,
  709. "VariableReference": {
  710. "m_id": "{FCD90ACD-882A-4EF8-83DB-21849C345B1B}"
  711. }
  712. },
  713. {
  714. "id": {
  715. "m_id": "{2E0352A9-E80B-40C4-8995-3741893B5D4C}"
  716. },
  717. "DynamicTypeOverride": 3,
  718. "contracts": [
  719. {
  720. "$type": "SlotTypeContract"
  721. },
  722. null
  723. ],
  724. "slotName": "Value B",
  725. "DisplayDataType": {
  726. "m_type": 3
  727. },
  728. "Descriptor": {
  729. "ConnectionType": 1,
  730. "SlotType": 2
  731. },
  732. "DynamicGroup": {
  733. "Value": 3545012108
  734. },
  735. "IsReference": true,
  736. "VariableReference": {
  737. "m_id": "{E0076D7E-786A-4CDF-B6B7-34C8A7F116FE}"
  738. }
  739. }
  740. ],
  741. "Datums": [
  742. {},
  743. {}
  744. ]
  745. }
  746. }
  747. },
  748. {
  749. "Id": {
  750. "id": 717415478810670
  751. },
  752. "Name": "SC-Node(Greater)",
  753. "Components": {
  754. "Component_[16703895326861745957]": {
  755. "$type": "Greater",
  756. "Id": 16703895326861745957,
  757. "Slots": [
  758. {
  759. "id": {
  760. "m_id": "{848A095E-31F0-497A-BEE5-C6599586AC01}"
  761. },
  762. "contracts": [
  763. {
  764. "$type": "SlotTypeContract"
  765. }
  766. ],
  767. "slotName": "Result",
  768. "DisplayDataType": {
  769. "m_type": 0
  770. },
  771. "Descriptor": {
  772. "ConnectionType": 2,
  773. "SlotType": 2
  774. }
  775. },
  776. {
  777. "id": {
  778. "m_id": "{AC77DF13-A657-426E-9A18-CA79BF513FCC}"
  779. },
  780. "contracts": [
  781. {
  782. "$type": "SlotTypeContract"
  783. }
  784. ],
  785. "slotName": "In",
  786. "toolTip": "Signal to perform the evaluation when desired.",
  787. "Descriptor": {
  788. "ConnectionType": 1,
  789. "SlotType": 1
  790. }
  791. },
  792. {
  793. "id": {
  794. "m_id": "{5DA61E62-C174-4C0F-87AE-6BC7F153846F}"
  795. },
  796. "contracts": [
  797. {
  798. "$type": "SlotTypeContract"
  799. }
  800. ],
  801. "slotName": "True",
  802. "toolTip": "Signaled if the result of the operation is true.",
  803. "Descriptor": {
  804. "ConnectionType": 2,
  805. "SlotType": 1
  806. }
  807. },
  808. {
  809. "id": {
  810. "m_id": "{6DE6B17D-094D-4339-A457-0C219888A50E}"
  811. },
  812. "contracts": [
  813. {
  814. "$type": "SlotTypeContract"
  815. }
  816. ],
  817. "slotName": "False",
  818. "toolTip": "Signaled if the result of the operation is false.",
  819. "Descriptor": {
  820. "ConnectionType": 2,
  821. "SlotType": 1
  822. }
  823. },
  824. {
  825. "id": {
  826. "m_id": "{E3F8F261-C8CA-4045-BAD3-EF1D93086409}"
  827. },
  828. "DynamicTypeOverride": 3,
  829. "contracts": [
  830. {
  831. "$type": "SlotTypeContract"
  832. },
  833. null
  834. ],
  835. "slotName": "Value A",
  836. "DisplayDataType": {
  837. "m_type": 3
  838. },
  839. "Descriptor": {
  840. "ConnectionType": 1,
  841. "SlotType": 2
  842. },
  843. "DynamicGroup": {
  844. "Value": 3545012108
  845. },
  846. "IsReference": true,
  847. "VariableReference": {
  848. "m_id": "{FCD90ACD-882A-4EF8-83DB-21849C345B1B}"
  849. }
  850. },
  851. {
  852. "id": {
  853. "m_id": "{2E0352A9-E80B-40C4-8995-3741893B5D4C}"
  854. },
  855. "DynamicTypeOverride": 3,
  856. "contracts": [
  857. {
  858. "$type": "SlotTypeContract"
  859. },
  860. null
  861. ],
  862. "slotName": "Value B",
  863. "DisplayDataType": {
  864. "m_type": 3
  865. },
  866. "Descriptor": {
  867. "ConnectionType": 1,
  868. "SlotType": 2
  869. },
  870. "DynamicGroup": {
  871. "Value": 3545012108
  872. },
  873. "IsReference": true,
  874. "VariableReference": {
  875. "m_id": "{FCD90ACD-882A-4EF8-83DB-21849C345B1B}"
  876. }
  877. }
  878. ],
  879. "Datums": [
  880. {},
  881. {}
  882. ]
  883. }
  884. }
  885. },
  886. {
  887. "Id": {
  888. "id": 717411183843374
  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": 717402593908782
  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": 717424068745262
  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": 717432658679854
  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": 717436953647150
  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": 717441248614446
  1353. },
  1354. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Greater Than (>): In)",
  1355. "Components": {
  1356. "Component_[18122223537459921771]": {
  1357. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1358. "Id": 18122223537459921771,
  1359. "sourceEndpoint": {
  1360. "nodeId": {
  1361. "id": 717411183843374
  1362. },
  1363. "slotId": {
  1364. "m_id": "{CC5808F3-2F02-47F1-AB85-15A91B5FE983}"
  1365. }
  1366. },
  1367. "targetEndpoint": {
  1368. "nodeId": {
  1369. "id": 717394003974190
  1370. },
  1371. "slotId": {
  1372. "m_id": "{AC77DF13-A657-426E-9A18-CA79BF513FCC}"
  1373. }
  1374. }
  1375. }
  1376. }
  1377. },
  1378. {
  1379. "Id": {
  1380. "id": 717445543581742
  1381. },
  1382. "Name": "srcEndpoint=(Greater Than (>): True), destEndpoint=(Expect True: In)",
  1383. "Components": {
  1384. "Component_[16812558146522517184]": {
  1385. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1386. "Id": 16812558146522517184,
  1387. "sourceEndpoint": {
  1388. "nodeId": {
  1389. "id": 717394003974190
  1390. },
  1391. "slotId": {
  1392. "m_id": "{5DA61E62-C174-4C0F-87AE-6BC7F153846F}"
  1393. }
  1394. },
  1395. "targetEndpoint": {
  1396. "nodeId": {
  1397. "id": 717406888876078
  1398. },
  1399. "slotId": {
  1400. "m_id": "{A8D0CE92-B7C5-43E0-A388-10A0C2F11AE0}"
  1401. }
  1402. }
  1403. }
  1404. }
  1405. },
  1406. {
  1407. "Id": {
  1408. "id": 717449838549038
  1409. },
  1410. "Name": "srcEndpoint=(Greater Than (>): False), destEndpoint=(Add Failure: In)",
  1411. "Components": {
  1412. "Component_[1422290146953350837]": {
  1413. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1414. "Id": 1422290146953350837,
  1415. "sourceEndpoint": {
  1416. "nodeId": {
  1417. "id": 717394003974190
  1418. },
  1419. "slotId": {
  1420. "m_id": "{6DE6B17D-094D-4339-A457-0C219888A50E}"
  1421. }
  1422. },
  1423. "targetEndpoint": {
  1424. "nodeId": {
  1425. "id": 717436953647150
  1426. },
  1427. "slotId": {
  1428. "m_id": "{364F8C19-D11A-4373-B8FB-A8D7CB474F3D}"
  1429. }
  1430. }
  1431. }
  1432. }
  1433. },
  1434. {
  1435. "Id": {
  1436. "id": 717454133516334
  1437. },
  1438. "Name": "srcEndpoint=(Greater Than (>): Result), destEndpoint=(Expect True: Candidate)",
  1439. "Components": {
  1440. "Component_[13534785477412061089]": {
  1441. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1442. "Id": 13534785477412061089,
  1443. "sourceEndpoint": {
  1444. "nodeId": {
  1445. "id": 717394003974190
  1446. },
  1447. "slotId": {
  1448. "m_id": "{848A095E-31F0-497A-BEE5-C6599586AC01}"
  1449. }
  1450. },
  1451. "targetEndpoint": {
  1452. "nodeId": {
  1453. "id": 717406888876078
  1454. },
  1455. "slotId": {
  1456. "m_id": "{32DCB16B-1D5F-46EF-8C1C-2B3681989F90}"
  1457. }
  1458. }
  1459. }
  1460. }
  1461. },
  1462. {
  1463. "Id": {
  1464. "id": 717458428483630
  1465. },
  1466. "Name": "srcEndpoint=(Expect True: Out), destEndpoint=(Greater Than (>): In)",
  1467. "Components": {
  1468. "Component_[9217779337145804060]": {
  1469. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1470. "Id": 9217779337145804060,
  1471. "sourceEndpoint": {
  1472. "nodeId": {
  1473. "id": 717406888876078
  1474. },
  1475. "slotId": {
  1476. "m_id": "{3631FC4E-981B-4438-A1B0-2B363CE58A06}"
  1477. }
  1478. },
  1479. "targetEndpoint": {
  1480. "nodeId": {
  1481. "id": 717415478810670
  1482. },
  1483. "slotId": {
  1484. "m_id": "{AC77DF13-A657-426E-9A18-CA79BF513FCC}"
  1485. }
  1486. }
  1487. }
  1488. }
  1489. },
  1490. {
  1491. "Id": {
  1492. "id": 717462723450926
  1493. },
  1494. "Name": "srcEndpoint=(Greater Than (>): True), destEndpoint=(Add Failure: In)",
  1495. "Components": {
  1496. "Component_[11283543700069991764]": {
  1497. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1498. "Id": 11283543700069991764,
  1499. "sourceEndpoint": {
  1500. "nodeId": {
  1501. "id": 717415478810670
  1502. },
  1503. "slotId": {
  1504. "m_id": "{5DA61E62-C174-4C0F-87AE-6BC7F153846F}"
  1505. }
  1506. },
  1507. "targetEndpoint": {
  1508. "nodeId": {
  1509. "id": 717424068745262
  1510. },
  1511. "slotId": {
  1512. "m_id": "{364F8C19-D11A-4373-B8FB-A8D7CB474F3D}"
  1513. }
  1514. }
  1515. }
  1516. }
  1517. },
  1518. {
  1519. "Id": {
  1520. "id": 717467018418222
  1521. },
  1522. "Name": "srcEndpoint=(Greater Than (>): False), destEndpoint=(Expect False: In)",
  1523. "Components": {
  1524. "Component_[17605654173047087172]": {
  1525. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1526. "Id": 17605654173047087172,
  1527. "sourceEndpoint": {
  1528. "nodeId": {
  1529. "id": 717415478810670
  1530. },
  1531. "slotId": {
  1532. "m_id": "{6DE6B17D-094D-4339-A457-0C219888A50E}"
  1533. }
  1534. },
  1535. "targetEndpoint": {
  1536. "nodeId": {
  1537. "id": 717428363712558
  1538. },
  1539. "slotId": {
  1540. "m_id": "{56015B0C-B78C-4291-9D3A-998170D5C9CE}"
  1541. }
  1542. }
  1543. }
  1544. }
  1545. },
  1546. {
  1547. "Id": {
  1548. "id": 717471313385518
  1549. },
  1550. "Name": "srcEndpoint=(Greater Than (>): Result), destEndpoint=(Expect False: Candidate)",
  1551. "Components": {
  1552. "Component_[6820226269975896815]": {
  1553. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1554. "Id": 6820226269975896815,
  1555. "sourceEndpoint": {
  1556. "nodeId": {
  1557. "id": 717415478810670
  1558. },
  1559. "slotId": {
  1560. "m_id": "{848A095E-31F0-497A-BEE5-C6599586AC01}"
  1561. }
  1562. },
  1563. "targetEndpoint": {
  1564. "nodeId": {
  1565. "id": 717428363712558
  1566. },
  1567. "slotId": {
  1568. "m_id": "{366837A4-FC64-4F46-A748-95AA605FF399}"
  1569. }
  1570. }
  1571. }
  1572. }
  1573. },
  1574. {
  1575. "Id": {
  1576. "id": 717475608352814
  1577. },
  1578. "Name": "srcEndpoint=(Greater Than (>): True), destEndpoint=(Add Failure: In)",
  1579. "Components": {
  1580. "Component_[15847157891270212237]": {
  1581. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1582. "Id": 15847157891270212237,
  1583. "sourceEndpoint": {
  1584. "nodeId": {
  1585. "id": 717398298941486
  1586. },
  1587. "slotId": {
  1588. "m_id": "{5DA61E62-C174-4C0F-87AE-6BC7F153846F}"
  1589. }
  1590. },
  1591. "targetEndpoint": {
  1592. "nodeId": {
  1593. "id": 717432658679854
  1594. },
  1595. "slotId": {
  1596. "m_id": "{364F8C19-D11A-4373-B8FB-A8D7CB474F3D}"
  1597. }
  1598. }
  1599. }
  1600. }
  1601. },
  1602. {
  1603. "Id": {
  1604. "id": 717479903320110
  1605. },
  1606. "Name": "srcEndpoint=(Greater Than (>): Result), destEndpoint=(Expect False: Candidate)",
  1607. "Components": {
  1608. "Component_[150903514752311490]": {
  1609. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1610. "Id": 150903514752311490,
  1611. "sourceEndpoint": {
  1612. "nodeId": {
  1613. "id": 717398298941486
  1614. },
  1615. "slotId": {
  1616. "m_id": "{848A095E-31F0-497A-BEE5-C6599586AC01}"
  1617. }
  1618. },
  1619. "targetEndpoint": {
  1620. "nodeId": {
  1621. "id": 717419773777966
  1622. },
  1623. "slotId": {
  1624. "m_id": "{366837A4-FC64-4F46-A748-95AA605FF399}"
  1625. }
  1626. }
  1627. }
  1628. }
  1629. },
  1630. {
  1631. "Id": {
  1632. "id": 717484198287406
  1633. },
  1634. "Name": "srcEndpoint=(Greater Than (>): False), destEndpoint=(Expect False: In)",
  1635. "Components": {
  1636. "Component_[9216822301247067059]": {
  1637. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1638. "Id": 9216822301247067059,
  1639. "sourceEndpoint": {
  1640. "nodeId": {
  1641. "id": 717398298941486
  1642. },
  1643. "slotId": {
  1644. "m_id": "{6DE6B17D-094D-4339-A457-0C219888A50E}"
  1645. }
  1646. },
  1647. "targetEndpoint": {
  1648. "nodeId": {
  1649. "id": 717419773777966
  1650. },
  1651. "slotId": {
  1652. "m_id": "{56015B0C-B78C-4291-9D3A-998170D5C9CE}"
  1653. }
  1654. }
  1655. }
  1656. }
  1657. },
  1658. {
  1659. "Id": {
  1660. "id": 717488493254702
  1661. },
  1662. "Name": "srcEndpoint=(Expect False: Out), destEndpoint=(Greater Than (>): In)",
  1663. "Components": {
  1664. "Component_[3544431951232857663]": {
  1665. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1666. "Id": 3544431951232857663,
  1667. "sourceEndpoint": {
  1668. "nodeId": {
  1669. "id": 717428363712558
  1670. },
  1671. "slotId": {
  1672. "m_id": "{955928BC-B10E-430A-9961-66E8F249E972}"
  1673. }
  1674. },
  1675. "targetEndpoint": {
  1676. "nodeId": {
  1677. "id": 717398298941486
  1678. },
  1679. "slotId": {
  1680. "m_id": "{AC77DF13-A657-426E-9A18-CA79BF513FCC}"
  1681. }
  1682. }
  1683. }
  1684. }
  1685. },
  1686. {
  1687. "Id": {
  1688. "id": 717492788221998
  1689. },
  1690. "Name": "srcEndpoint=(Expect False: Out), destEndpoint=(Mark Complete: In)",
  1691. "Components": {
  1692. "Component_[10135686444064222678]": {
  1693. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1694. "Id": 10135686444064222678,
  1695. "sourceEndpoint": {
  1696. "nodeId": {
  1697. "id": 717419773777966
  1698. },
  1699. "slotId": {
  1700. "m_id": "{955928BC-B10E-430A-9961-66E8F249E972}"
  1701. }
  1702. },
  1703. "targetEndpoint": {
  1704. "nodeId": {
  1705. "id": 717402593908782
  1706. },
  1707. "slotId": {
  1708. "m_id": "{76D0BB2A-077E-4ED4-AC30-A58947DD542A}"
  1709. }
  1710. }
  1711. }
  1712. }
  1713. }
  1714. ]
  1715. },
  1716. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  1717. "versionData": {
  1718. "_grammarVersion": 1,
  1719. "_runtimeVersion": 1,
  1720. "_fileVersion": 1
  1721. },
  1722. "m_variableCounter": 15,
  1723. "GraphCanvasData": [
  1724. {
  1725. "Key": {
  1726. "id": 717389709006894
  1727. },
  1728. "Value": {
  1729. "ComponentData": {
  1730. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  1731. "$type": "SceneComponentSaveData",
  1732. "ViewParams": {
  1733. "Scale": 0.5207341,
  1734. "AnchorX": 758.54443359375,
  1735. "AnchorY": -1094.6085205078125
  1736. }
  1737. }
  1738. }
  1739. }
  1740. },
  1741. {
  1742. "Key": {
  1743. "id": 717394003974190
  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. 320.0,
  1755. -560.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": "{D2FD6D2E-BCEA-4FFF-81D6-2F441E60614D}"
  1765. }
  1766. }
  1767. }
  1768. },
  1769. {
  1770. "Key": {
  1771. "id": 717398298941486
  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. 1660.0,
  1783. -560.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": "{831E62C8-17CC-43F3-9216-7AFD77F0D8A0}"
  1793. }
  1794. }
  1795. }
  1796. },
  1797. {
  1798. "Key": {
  1799. "id": 717402593908782
  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. 2300.0,
  1811. -600.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": "{DC7D5E88-8919-4CD0-921F-27B4AEF0A1E0}"
  1821. }
  1822. }
  1823. }
  1824. },
  1825. {
  1826. "Key": {
  1827. "id": 717406888876078
  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. 680.0,
  1839. -580.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": "{E9D4DA3A-6FA9-464D-89DF-D34240667991}"
  1849. }
  1850. }
  1851. }
  1852. },
  1853. {
  1854. "Key": {
  1855. "id": 717411183843374
  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. -560.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": 717415478810670
  1884. },
  1885. "Value": {
  1886. "ComponentData": {
  1887. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1888. "$type": "GeneralNodeTitleComponentSaveData",
  1889. "PaletteOverride": "MathNodeTitlePalette"
  1890. },
  1891. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1892. "$type": "GeometrySaveData",
  1893. "Position": [
  1894. 1000.0,
  1895. -560.0
  1896. ]
  1897. },
  1898. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1899. "$type": "StylingComponentSaveData",
  1900. "SubStyle": ".comparison"
  1901. },
  1902. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1903. "$type": "PersistentIdComponentSaveData",
  1904. "PersistentId": "{55731B22-72D3-4227-8173-75019410BC29}"
  1905. }
  1906. }
  1907. }
  1908. },
  1909. {
  1910. "Key": {
  1911. "id": 717419773777966
  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. 2020.0,
  1923. -560.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": "{C6F52068-64EB-4193-B666-FAA4D70B4B52}"
  1933. }
  1934. }
  1935. }
  1936. },
  1937. {
  1938. "Key": {
  1939. "id": 717424068745262
  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. 1360.0,
  1951. -760.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": "{07572001-AB4B-441B-9668-D85C873A79FD}"
  1961. }
  1962. }
  1963. }
  1964. },
  1965. {
  1966. "Key": {
  1967. "id": 717428363712558
  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. -560.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": "{5E07B17D-3C6A-4EF0-A8DE-18245A5EA37D}"
  1989. }
  1990. }
  1991. }
  1992. },
  1993. {
  1994. "Key": {
  1995. "id": 717432658679854
  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. 2020.0,
  2007. -760.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": "{5D608EC8-8E93-4994-982C-F1E5624C64E7}"
  2017. }
  2018. }
  2019. }
  2020. },
  2021. {
  2022. "Key": {
  2023. "id": 717436953647150
  2024. },
  2025. "Value": {
  2026. "ComponentData": {
  2027. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2028. "$type": "GeneralNodeTitleComponentSaveData",
  2029. "PaletteOverride": "MethodNodeTitlePalette"
  2030. },
  2031. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2032. "$type": "GeometrySaveData",
  2033. "Position": [
  2034. 680.0,
  2035. -360.0
  2036. ]
  2037. },
  2038. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2039. "$type": "StylingComponentSaveData",
  2040. "SubStyle": ".method"
  2041. },
  2042. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2043. "$type": "PersistentIdComponentSaveData",
  2044. "PersistentId": "{FD677CA4-BB12-4986-AB3E-5E95E07C143F}"
  2045. }
  2046. }
  2047. }
  2048. }
  2049. ],
  2050. "StatisticsHelper": {
  2051. "InstanceCounter": [
  2052. {
  2053. "Key": 1050222979521486012,
  2054. "Value": 1
  2055. },
  2056. {
  2057. "Key": 4199610336680704683,
  2058. "Value": 1
  2059. },
  2060. {
  2061. "Key": 4511496914810470227,
  2062. "Value": 2
  2063. },
  2064. {
  2065. "Key": 6840657073857873079,
  2066. "Value": 1
  2067. },
  2068. {
  2069. "Key": 6948473238498171382,
  2070. "Value": 3
  2071. },
  2072. {
  2073. "Key": 16883864771291515098,
  2074. "Value": 3
  2075. }
  2076. ]
  2077. }
  2078. }
  2079. }
  2080. }
  2081. }
  2082. }