demo.model 247 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238
  1. {
  2. "csm": {
  3. "nodes": {
  4. "0": {
  5. "typename": {
  6. "type": "string",
  7. "value": "AtomicDEVSIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 241.77214216000004,
  13. 300.54982484
  14. ]
  15. },
  16. "orientation": {
  17. "type": "double",
  18. "value": 0
  19. },
  20. "scale": {
  21. "type": "list<double>",
  22. "value": [
  23. 1.2457673698684366,
  24. 0.72046788
  25. ]
  26. },
  27. "mapper": {
  28. "type": "code",
  29. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'position': getAttr('position'), 'scale': getAttr('scale')})"
  30. },
  31. "parser": {
  32. "type": "code",
  33. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'position': getAttr('position'), 'scale': getAttr('scale')})"
  34. },
  35. "$contents": {
  36. "type": "map<string,*>",
  37. "value": {
  38. "nodes": {
  39. "14": {
  40. "width": {
  41. "type": "double",
  42. "value": 250
  43. },
  44. "height": {
  45. "type": "double",
  46. "value": 250
  47. },
  48. "cornerRadius": {
  49. "type": "double",
  50. "value": 5
  51. },
  52. "style": {
  53. "type": "map<string,string>",
  54. "value": {
  55. "stroke": "#000000",
  56. "stroke-dasharray": "",
  57. "fill": "#ffffff",
  58. "fill-opacity": 0.75,
  59. "font-size": "20px",
  60. "stroke-width": 1,
  61. "arrow-start": "none",
  62. "arrow-end": "none"
  63. }
  64. },
  65. "mapper": {
  66. "type": "code",
  67. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  68. },
  69. "parser": {
  70. "type": "code",
  71. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  72. },
  73. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  74. "position": {
  75. "type": "list<double>",
  76. "value": [
  77. 8,
  78. 28
  79. ]
  80. },
  81. "orientation": {
  82. "type": "double",
  83. "value": 0
  84. },
  85. "scale": {
  86. "type": "list<double>",
  87. "value": [
  88. 1,
  89. 1
  90. ]
  91. }
  92. },
  93. "16": {
  94. "textContent": {
  95. "type": "string",
  96. "value": "Generator"
  97. },
  98. "style": {
  99. "type": "map<string,string>",
  100. "value": {
  101. "stroke": "#ffffff",
  102. "stroke-dasharray": "",
  103. "fill": "#000000",
  104. "fill-opacity": 1,
  105. "font-size": "20px",
  106. "stroke-width": 0,
  107. "arrow-start": "none",
  108. "arrow-end": "none"
  109. }
  110. },
  111. "mapper": {
  112. "type": "code",
  113. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  114. },
  115. "parser": {
  116. "type": "code",
  117. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  118. },
  119. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  120. "position": {
  121. "type": "list<double>",
  122. "value": [
  123. 8,
  124. 7
  125. ]
  126. },
  127. "orientation": {
  128. "type": "double",
  129. "value": 0
  130. },
  131. "scale": {
  132. "type": "list<double>",
  133. "value": [
  134. 1,
  135. 1
  136. ]
  137. }
  138. }
  139. },
  140. "edges": []
  141. }
  142. },
  143. "$asuri": {
  144. "type": "string",
  145. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/AtomicDEVS/0.instance"
  146. },
  147. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/AtomicDEVSIcon"
  148. },
  149. "1": {
  150. "typename": {
  151. "type": "string",
  152. "value": "StateIcon"
  153. },
  154. "position": {
  155. "type": "list<double>",
  156. "value": [
  157. 267,
  158. 361
  159. ]
  160. },
  161. "orientation": {
  162. "type": "double",
  163. "value": 0
  164. },
  165. "scale": {
  166. "type": "list<double>",
  167. "value": [
  168. 1,
  169. 1
  170. ]
  171. },
  172. "mapper": {
  173. "type": "code",
  174. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'position': getAttr('position')})"
  175. },
  176. "parser": {
  177. "type": "code",
  178. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'position': getAttr('position')})"
  179. },
  180. "$contents": {
  181. "type": "map<string,*>",
  182. "value": {
  183. "nodes": {
  184. "34": {
  185. "r": {
  186. "type": "double",
  187. "value": 25
  188. },
  189. "style": {
  190. "type": "map<string,string>",
  191. "value": {
  192. "stroke": "#000000",
  193. "stroke-dasharray": "",
  194. "fill": "#ffffff",
  195. "fill-opacity": 0.75,
  196. "font-size": "20px",
  197. "stroke-width": 2,
  198. "arrow-start": "none",
  199. "arrow-end": "none"
  200. }
  201. },
  202. "mapper": {
  203. "type": "code",
  204. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar style = {\n \"stroke\": \"#000000\",\n \"stroke-dasharray\": \"\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"stroke-width\": 1,\n \"arrow-start\": \"none\",\n \"arrow-end\": \"none\"\n};\nif (getAttr('initial')) {\n style[\"stroke-width\"] = 2;\n}\n({'style': style})"
  205. },
  206. "parser": {
  207. "type": "code",
  208. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  209. },
  210. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  211. "position": {
  212. "type": "list<double>",
  213. "value": [
  214. 4,
  215. 21
  216. ]
  217. },
  218. "orientation": {
  219. "type": "double",
  220. "value": 0
  221. },
  222. "scale": {
  223. "type": "list<double>",
  224. "value": [
  225. 1,
  226. 1
  227. ]
  228. }
  229. },
  230. "37": {
  231. "textContent": {
  232. "type": "string",
  233. "value": "generating"
  234. },
  235. "style": {
  236. "type": "map<string,string>",
  237. "value": {
  238. "stroke": "#000000",
  239. "stroke-dasharray": "",
  240. "fill": "green",
  241. "fill-opacity": 1,
  242. "font-size": "12px",
  243. "font-weight": "bold",
  244. "stroke-width": 0,
  245. "arrow-start": "none",
  246. "arrow-end": "none"
  247. }
  248. },
  249. "mapper": {
  250. "type": "code",
  251. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  252. },
  253. "parser": {
  254. "type": "code",
  255. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  256. },
  257. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  258. "position": {
  259. "type": "list<double>",
  260. "value": [
  261. 5,
  262. 6
  263. ]
  264. },
  265. "orientation": {
  266. "type": "double",
  267. "value": 0
  268. },
  269. "scale": {
  270. "type": "list<double>",
  271. "value": [
  272. 1,
  273. 1
  274. ]
  275. }
  276. },
  277. "40": {
  278. "textContent": {
  279. "type": "string",
  280. "value": "return 1.0"
  281. },
  282. "style": {
  283. "type": "map<string,string>",
  284. "value": {
  285. "stroke": "#ffffff",
  286. "stroke-dasharray": "",
  287. "fill": "#000000",
  288. "fill-opacity": 1,
  289. "font-size": "12px",
  290. "stroke-width": 0,
  291. "arrow-start": "none",
  292. "arrow-end": "none"
  293. }
  294. },
  295. "mapper": {
  296. "type": "code",
  297. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('time_advance').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': textContent })"
  298. },
  299. "parser": {
  300. "type": "code",
  301. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  302. },
  303. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  304. "position": {
  305. "type": "list<double>",
  306. "value": [
  307. 79,
  308. 57
  309. ]
  310. },
  311. "orientation": {
  312. "type": "double",
  313. "value": 0
  314. },
  315. "scale": {
  316. "type": "list<double>",
  317. "value": [
  318. 1,
  319. 1
  320. ]
  321. }
  322. },
  323. "42": {
  324. "src": {
  325. "type": "string",
  326. "value": "/Formalisms/ParallelDEVS/icons/clock.png"
  327. },
  328. "width": {
  329. "type": "double",
  330. "value": 20
  331. },
  332. "height": {
  333. "type": "double",
  334. "value": 20
  335. },
  336. "style": {
  337. "type": "map<string,string>",
  338. "value": {
  339. "stroke": "#000000",
  340. "stroke-dasharray": "",
  341. "fill": "#ffffff",
  342. "fill-opacity": 0.75,
  343. "font-size": "20px",
  344. "stroke-width": 1,
  345. "arrow-start": "none",
  346. "arrow-end": "none"
  347. }
  348. },
  349. "mapper": {
  350. "type": "code",
  351. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  352. },
  353. "parser": {
  354. "type": "code",
  355. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  356. },
  357. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  358. "position": {
  359. "type": "list<double>",
  360. "value": [
  361. 56,
  362. 53
  363. ]
  364. },
  365. "orientation": {
  366. "type": "double",
  367. "value": 0
  368. },
  369. "scale": {
  370. "type": "list<double>",
  371. "value": [
  372. 1,
  373. 1
  374. ]
  375. }
  376. },
  377. "44": {
  378. "src": {
  379. "type": "string",
  380. "value": "/Formalisms/ParallelDEVS/icons/arrow_up.png"
  381. },
  382. "width": {
  383. "type": "double",
  384. "value": 20
  385. },
  386. "height": {
  387. "type": "double",
  388. "value": 20
  389. },
  390. "style": {
  391. "type": "map<string,string>",
  392. "value": {
  393. "stroke": "#000000",
  394. "stroke-dasharray": "",
  395. "fill": "#ffffff",
  396. "fill-opacity": 1,
  397. "font-size": "20px",
  398. "stroke-width": 1,
  399. "arrow-start": "none",
  400. "arrow-end": "none"
  401. }
  402. },
  403. "mapper": {
  404. "type": "code",
  405. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar width = 20,\n height = 20;\nif (getAttr('output') == \"\") {\n width = 0;\n height = 0;\n}\n({'width': width, 'height': height})"
  406. },
  407. "parser": {
  408. "type": "code",
  409. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  410. },
  411. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  412. "position": {
  413. "type": "list<double>",
  414. "value": [
  415. 55,
  416. 18
  417. ]
  418. },
  419. "orientation": {
  420. "type": "double",
  421. "value": 0
  422. },
  423. "scale": {
  424. "type": "list<double>",
  425. "value": [
  426. 1,
  427. 1
  428. ]
  429. }
  430. },
  431. "46": {
  432. "textContent": {
  433. "type": "string",
  434. "value": "...\nreturn {'p_out': [Task(duration)]}"
  435. },
  436. "style": {
  437. "type": "map<string,string>",
  438. "value": {
  439. "stroke": "#ffffff",
  440. "stroke-dasharray": "",
  441. "fill": "#000000",
  442. "fill-opacity": 1,
  443. "font-size": "12px",
  444. "stroke-width": 0,
  445. "arrow-start": "none",
  446. "arrow-end": "none"
  447. }
  448. },
  449. "mapper": {
  450. "type": "code",
  451. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('output').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': textContent })"
  452. },
  453. "parser": {
  454. "type": "code",
  455. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  456. },
  457. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  458. "position": {
  459. "type": "list<double>",
  460. "value": [
  461. 77,
  462. 23
  463. ]
  464. },
  465. "orientation": {
  466. "type": "double",
  467. "value": 0
  468. },
  469. "scale": {
  470. "type": "list<double>",
  471. "value": [
  472. 1,
  473. 1
  474. ]
  475. }
  476. }
  477. },
  478. "edges": []
  479. }
  480. },
  481. "$asuri": {
  482. "type": "string",
  483. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/State/1.instance"
  484. },
  485. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateIcon"
  486. },
  487. "2": {
  488. "typename": {
  489. "type": "string",
  490. "value": "StateDefinitionIcon"
  491. },
  492. "position": {
  493. "type": "list<double>",
  494. "value": [
  495. 322,
  496. 152
  497. ]
  498. },
  499. "orientation": {
  500. "type": "double",
  501. "value": 0
  502. },
  503. "scale": {
  504. "type": "list<double>",
  505. "value": [
  506. 1,
  507. 1
  508. ]
  509. },
  510. "mapper": {
  511. "type": "code",
  512. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  513. },
  514. "parser": {
  515. "type": "code",
  516. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  517. },
  518. "$contents": {
  519. "type": "map<string,*>",
  520. "value": {
  521. "nodes": {
  522. "82": {
  523. "width": {
  524. "type": "double",
  525. "value": 200
  526. },
  527. "height": {
  528. "type": "double",
  529. "value": 125
  530. },
  531. "cornerRadius": {
  532. "type": "double",
  533. "value": 10
  534. },
  535. "style": {
  536. "type": "map<string,string>",
  537. "value": {
  538. "stroke": "#000000",
  539. "stroke-dasharray": "",
  540. "fill": "orange",
  541. "fill-opacity": 0.75,
  542. "stroke-width": 1
  543. }
  544. },
  545. "mapper": {
  546. "type": "code",
  547. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  548. },
  549. "parser": {
  550. "type": "code",
  551. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  552. },
  553. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  554. "position": {
  555. "type": "list<double>",
  556. "value": [
  557. 4,
  558. 3
  559. ]
  560. },
  561. "orientation": {
  562. "type": "double",
  563. "value": 0
  564. },
  565. "scale": {
  566. "type": "list<double>",
  567. "value": [
  568. 1,
  569. 1
  570. ]
  571. }
  572. },
  573. "85": {
  574. "segments": {
  575. "type": "string",
  576. "value": "m0,0l197,0"
  577. },
  578. "style": {
  579. "type": "map<string,string>",
  580. "value": {
  581. "stroke": "#000000",
  582. "stroke-dasharray": "",
  583. "fill": "#ffffff",
  584. "fill-opacity": 0.75,
  585. "font-size": "20px",
  586. "stroke-width": 1,
  587. "arrow-start": "none",
  588. "arrow-end": "none"
  589. }
  590. },
  591. "mapper": {
  592. "type": "code",
  593. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  594. },
  595. "parser": {
  596. "type": "code",
  597. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  598. },
  599. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  600. "position": {
  601. "type": "list<double>",
  602. "value": [
  603. 6,
  604. 36
  605. ]
  606. },
  607. "orientation": {
  608. "type": "double",
  609. "value": 0
  610. },
  611. "scale": {
  612. "type": "list<double>",
  613. "value": [
  614. 1,
  615. 1
  616. ]
  617. }
  618. },
  619. "86": {
  620. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  621. "position": {
  622. "type": "list<double>",
  623. "value": [
  624. 53.75,
  625. 20
  626. ]
  627. },
  628. "orientation": {
  629. "type": "double",
  630. "value": 0
  631. },
  632. "scale": {
  633. "type": "list<double>",
  634. "value": [
  635. 1,
  636. 1
  637. ]
  638. },
  639. "link-style": {
  640. "type": "map<string,string>",
  641. "value": {
  642. "stroke": "#00ffff",
  643. "stroke-dasharray": "",
  644. "stroke-opacity": 0.1,
  645. "stroke-width": 1
  646. }
  647. }
  648. },
  649. "90": {
  650. "textContent": {
  651. "type": "string",
  652. "value": "+ nr_of_tasks : int"
  653. },
  654. "style": {
  655. "type": "map<string,string>",
  656. "value": {
  657. "stroke": "#ffffff",
  658. "stroke-dasharray": "",
  659. "fill": "#000000",
  660. "fill-opacity": 1,
  661. "font-size": "12px",
  662. "stroke-width": 0,
  663. "arrow-start": "none",
  664. "arrow-end": "none"
  665. }
  666. },
  667. "mapper": {
  668. "type": "code",
  669. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar filenames = getAttr('attributes').map(\n function(attr)\n {\n var s = '+ '+attr['name'] + ' : ' + attr['type'];\n if (attr['default'])\n s += ' = ' + attr['default'];\n return s;\n });\n\n({'textContent': filenames.join('\\n')})"
  670. },
  671. "parser": {
  672. "type": "code",
  673. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  674. },
  675. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  676. "position": {
  677. "type": "list<double>",
  678. "value": [
  679. 9,
  680. 41
  681. ]
  682. },
  683. "orientation": {
  684. "type": "double",
  685. "value": 0
  686. },
  687. "scale": {
  688. "type": "list<double>",
  689. "value": [
  690. 1,
  691. 1
  692. ]
  693. }
  694. },
  695. "92": {
  696. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  697. "position": {
  698. "type": "list<double>",
  699. "value": [
  700. 18.1796875,
  701. 26
  702. ]
  703. },
  704. "orientation": {
  705. "type": "double",
  706. "value": 0
  707. },
  708. "scale": {
  709. "type": "list<double>",
  710. "value": [
  711. 1,
  712. 1
  713. ]
  714. },
  715. "link-style": {
  716. "type": "map<string,string>",
  717. "value": {
  718. "stroke": "#00ffff",
  719. "stroke-dasharray": "",
  720. "stroke-opacity": 0.1,
  721. "stroke-width": 1
  722. }
  723. }
  724. },
  725. "93": {
  726. "textContent": {
  727. "type": "string",
  728. "value": "GeneratorState"
  729. },
  730. "style": {
  731. "type": "map<string,string>",
  732. "value": {
  733. "stroke": "#ffffff",
  734. "stroke-dasharray": "",
  735. "fill": "#000000",
  736. "fill-opacity": 1,
  737. "font-size": "20px",
  738. "stroke-width": 0,
  739. "arrow-start": "none",
  740. "arrow-end": "none"
  741. }
  742. },
  743. "mapper": {
  744. "type": "code",
  745. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  746. },
  747. "parser": {
  748. "type": "code",
  749. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  750. },
  751. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  752. "position": {
  753. "type": "list<double>",
  754. "value": [
  755. 8,
  756. 9
  757. ]
  758. },
  759. "orientation": {
  760. "type": "double",
  761. "value": 0
  762. },
  763. "scale": {
  764. "type": "list<double>",
  765. "value": [
  766. 1,
  767. 1
  768. ]
  769. }
  770. },
  771. "94": {
  772. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  773. "position": {
  774. "type": "list<double>",
  775. "value": [
  776. 25.607941766118074,
  777. 12.053332982167333
  778. ]
  779. },
  780. "orientation": {
  781. "type": "double",
  782. "value": 0
  783. },
  784. "scale": {
  785. "type": "list<double>",
  786. "value": [
  787. 1,
  788. 1
  789. ]
  790. },
  791. "link-style": {
  792. "type": "map<string,string>",
  793. "value": {
  794. "stroke": "#00ffff",
  795. "stroke-dasharray": "",
  796. "stroke-opacity": 0.1,
  797. "stroke-width": 1
  798. }
  799. }
  800. }
  801. },
  802. "edges": [
  803. {
  804. "src": "82",
  805. "dest": "86"
  806. },
  807. {
  808. "src": "86",
  809. "dest": "85"
  810. },
  811. {
  812. "src": "82",
  813. "dest": "92"
  814. },
  815. {
  816. "src": "92",
  817. "dest": "90"
  818. },
  819. {
  820. "src": "82",
  821. "dest": "94"
  822. },
  823. {
  824. "src": "94",
  825. "dest": "93"
  826. }
  827. ]
  828. }
  829. },
  830. "$asuri": {
  831. "type": "string",
  832. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/StateDefinition/2.instance"
  833. },
  834. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateDefinitionIcon"
  835. },
  836. "5": {
  837. "link-style": {
  838. "type": "map<string,string>",
  839. "value": {
  840. "stroke": "blue",
  841. "stroke-dasharray": "",
  842. "stroke-opacity": 1,
  843. "stroke-width": 2
  844. }
  845. },
  846. "arrowHead": {
  847. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  848. "value": "custom"
  849. },
  850. "arrowTail": {
  851. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  852. "value": "arrow-black"
  853. },
  854. "typename": {
  855. "type": "string",
  856. "value": "InternalTransitionLink"
  857. },
  858. "position": {
  859. "type": "list<double>",
  860. "value": [
  861. 297.09991584483896,
  862. 454.00000000000006
  863. ]
  864. },
  865. "orientation": {
  866. "type": "double",
  867. "value": 0
  868. },
  869. "scale": {
  870. "type": "list<double>",
  871. "value": [
  872. 1,
  873. 1
  874. ]
  875. },
  876. "mapper": {
  877. "type": "code",
  878. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  879. },
  880. "parser": {
  881. "type": "code",
  882. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  883. },
  884. "$contents": {
  885. "type": "map<string,*>",
  886. "value": {
  887. "nodes": {
  888. "77": {
  889. "textContent": {
  890. "type": "string",
  891. "value": "[]"
  892. },
  893. "style": {
  894. "type": "map<string,string>",
  895. "value": {
  896. "stroke": "#ffffff",
  897. "stroke-dasharray": "",
  898. "fill": "#000000",
  899. "fill-opacity": 1,
  900. "font-size": "12px",
  901. "stroke-width": 0,
  902. "arrow-start": "none",
  903. "arrow-end": "none"
  904. }
  905. },
  906. "mapper": {
  907. "type": "code",
  908. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('condition').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': '[' + textContent + ']'})"
  909. },
  910. "parser": {
  911. "type": "code",
  912. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  913. },
  914. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  915. "position": {
  916. "type": "list<double>",
  917. "value": [
  918. "0;-7.014454767810832,0%",
  919. "0;-31.5,0%"
  920. ]
  921. },
  922. "orientation": {
  923. "type": "double",
  924. "value": "0;3.2406981391963484e-13"
  925. },
  926. "scale": {
  927. "type": "list<double>",
  928. "value": [
  929. 1,
  930. 1
  931. ]
  932. },
  933. "$linkDecoratorInfo": {
  934. "type": "map<string,double>",
  935. "value": {
  936. "xratio": 0.4294478527607362,
  937. "yoffset": -31.5
  938. }
  939. }
  940. },
  941. "78": {
  942. "textContent": {
  943. "type": "string",
  944. "value": "return {\"nr_of_tasks\": self.state.nr_of_tasks + 1}"
  945. },
  946. "style": {
  947. "type": "map<string,string>",
  948. "value": {
  949. "stroke": "#ffffff",
  950. "stroke-dasharray": "",
  951. "fill": "#000000",
  952. "fill-opacity": 1,
  953. "font-size": "12px",
  954. "stroke-width": 0,
  955. "arrow-start": "none",
  956. "arrow-end": "none"
  957. }
  958. },
  959. "mapper": {
  960. "type": "code",
  961. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('action').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': textContent})"
  962. },
  963. "parser": {
  964. "type": "code",
  965. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  966. },
  967. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  968. "position": {
  969. "type": "list<double>",
  970. "value": [
  971. "0;-7.014454767811003,0%",
  972. "0;2.5,0%"
  973. ]
  974. },
  975. "orientation": {
  976. "type": "double",
  977. "value": "0;3.2406981391963484e-13"
  978. },
  979. "scale": {
  980. "type": "list<double>",
  981. "value": [
  982. 1,
  983. 1
  984. ]
  985. },
  986. "$linkDecoratorInfo": {
  987. "type": "map<string,double>",
  988. "value": {
  989. "xratio": 0.4294478527607362,
  990. "yoffset": 2.5
  991. }
  992. }
  993. },
  994. "267": {
  995. "segments": {
  996. "type": "string",
  997. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  998. },
  999. "style": {
  1000. "type": "map<string,string>",
  1001. "value": {
  1002. "stroke": "#000000",
  1003. "fill": "#000000",
  1004. "opacity": 1,
  1005. "stroke-width": 1
  1006. }
  1007. },
  1008. "mapper": {
  1009. "type": "code",
  1010. "value": ""
  1011. },
  1012. "parser": {
  1013. "type": "code",
  1014. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1015. },
  1016. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1017. "position": {
  1018. "type": "list<double>",
  1019. "value": [
  1020. "0;14.900084155160926,-3.7135279660344134e-13%",
  1021. "0;-29.99900222222226,-100%"
  1022. ]
  1023. },
  1024. "orientation": {
  1025. "type": "double",
  1026. "value": "0;-90.00000000000021"
  1027. },
  1028. "scale": {
  1029. "type": "list<double>",
  1030. "value": [
  1031. 1,
  1032. 1
  1033. ]
  1034. },
  1035. "$linkDecoratorInfo": {
  1036. "type": "map<string,double>",
  1037. "value": {
  1038. "xratio": 1,
  1039. "yoffset": -4
  1040. }
  1041. }
  1042. }
  1043. },
  1044. "edges": []
  1045. }
  1046. },
  1047. "$asuri": {
  1048. "type": "string",
  1049. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/InternalTransition/5.instance"
  1050. },
  1051. "$segments": {
  1052. "type": "map<string,list<string>>",
  1053. "value": {
  1054. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateIcon/1.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/InternalTransitionLink/5.instance": "M277,425L277,454L297.09991584483896,454.0000000000001",
  1055. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/InternalTransitionLink/5.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateIcon/1.instance": "M297.09991584483896,454.0000000000001L316,454L315.9999999999999,424.0009977777778"
  1056. }
  1057. },
  1058. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/InternalTransitionLink"
  1059. },
  1060. "7": {
  1061. "link-style": {
  1062. "type": "map<string,string>",
  1063. "value": {
  1064. "stroke": "#000000",
  1065. "stroke-dasharray": "",
  1066. "stroke-opacity": 0,
  1067. "stroke-width": 0
  1068. }
  1069. },
  1070. "arrowHead": {
  1071. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1072. "value": "custom"
  1073. },
  1074. "arrowTail": {
  1075. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1076. "value": "arrow-black"
  1077. },
  1078. "typename": {
  1079. "type": "string",
  1080. "value": "statesLink"
  1081. },
  1082. "position": {
  1083. "type": "list<double>",
  1084. "value": [
  1085. 349.1522171933186,
  1086. 350.1595671375398
  1087. ]
  1088. },
  1089. "orientation": {
  1090. "type": "double",
  1091. "value": 0
  1092. },
  1093. "scale": {
  1094. "type": "list<double>",
  1095. "value": [
  1096. 1,
  1097. 1
  1098. ]
  1099. },
  1100. "mapper": {
  1101. "type": "code",
  1102. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1103. },
  1104. "parser": {
  1105. "type": "code",
  1106. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1107. },
  1108. "$contents": {
  1109. "type": "map<string,*>",
  1110. "value": {
  1111. "nodes": {},
  1112. "edges": []
  1113. }
  1114. },
  1115. "$asuri": {
  1116. "type": "string",
  1117. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/states/7.instance"
  1118. },
  1119. "$segments": {
  1120. "type": "map<string,list<string>>",
  1121. "value": {
  1122. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/AtomicDEVSIcon/0.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statesLink/7.instance": "M310.1063999999999,305.59310000000005L349.1522171933186,350.15956713753985",
  1123. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statesLink/7.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateIcon/1.instance": "M349.1026247193198,350.1029628320953L387.9998322689048,394.4998085535691"
  1124. }
  1125. },
  1126. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statesLink"
  1127. },
  1128. "8": {
  1129. "link-style": {
  1130. "type": "map<string,string>",
  1131. "value": {
  1132. "stroke": "#000000",
  1133. "stroke-dasharray": "- ",
  1134. "stroke-opacity": 1,
  1135. "stroke-width": 1
  1136. }
  1137. },
  1138. "arrowHead": {
  1139. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1140. "value": "custom"
  1141. },
  1142. "arrowTail": {
  1143. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1144. "value": "arrow-black"
  1145. },
  1146. "typename": {
  1147. "type": "string",
  1148. "value": "statedefLink"
  1149. },
  1150. "position": {
  1151. "type": "list<double>",
  1152. "value": [
  1153. 423,
  1154. 301
  1155. ]
  1156. },
  1157. "orientation": {
  1158. "type": "double",
  1159. "value": 0
  1160. },
  1161. "scale": {
  1162. "type": "list<double>",
  1163. "value": [
  1164. 1,
  1165. 1
  1166. ]
  1167. },
  1168. "mapper": {
  1169. "type": "code",
  1170. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1171. },
  1172. "parser": {
  1173. "type": "code",
  1174. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1175. },
  1176. "$contents": {
  1177. "type": "map<string,*>",
  1178. "value": {
  1179. "nodes": {
  1180. "271": {
  1181. "r": {
  1182. "type": "double",
  1183. "value": 5
  1184. },
  1185. "style": {
  1186. "type": "map<string,string>",
  1187. "value": {
  1188. "stroke": "#000000",
  1189. "fill": "#000000",
  1190. "opacity": 1,
  1191. "stroke-width": 1
  1192. }
  1193. },
  1194. "mapper": {
  1195. "type": "code",
  1196. "value": ""
  1197. },
  1198. "parser": {
  1199. "type": "code",
  1200. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1201. },
  1202. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1203. "position": {
  1204. "type": "list<double>",
  1205. "value": [
  1206. "0;-5,6.123031769111886e-15%",
  1207. "0;-20.999286848072586,-100%"
  1208. ]
  1209. },
  1210. "orientation": {
  1211. "type": "double",
  1212. "value": "0;-90"
  1213. },
  1214. "scale": {
  1215. "type": "list<double>",
  1216. "value": [
  1217. 1,
  1218. 1
  1219. ]
  1220. },
  1221. "$linkDecoratorInfo": {
  1222. "type": "map<string,double>",
  1223. "value": {
  1224. "xratio": 1,
  1225. "yoffset": -5
  1226. }
  1227. }
  1228. }
  1229. },
  1230. "edges": []
  1231. }
  1232. },
  1233. "$asuri": {
  1234. "type": "string",
  1235. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/statedef/8.instance"
  1236. },
  1237. "$segments": {
  1238. "type": "map<string,list<string>>",
  1239. "value": {
  1240. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/AtomicDEVSIcon/0.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statedefLink/8.instance": "M423,322L423,301",
  1241. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statedefLink/8.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateDefinitionIcon/2.instance": "M423,300.921707478294L423,280.0007131519274"
  1242. }
  1243. },
  1244. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statedefLink"
  1245. },
  1246. "9": {
  1247. "typename": {
  1248. "type": "string",
  1249. "value": "AtomicDEVSIcon"
  1250. },
  1251. "position": {
  1252. "type": "list<double>",
  1253. "value": [
  1254. 658.9152,
  1255. 298
  1256. ]
  1257. },
  1258. "orientation": {
  1259. "type": "double",
  1260. "value": 0
  1261. },
  1262. "scale": {
  1263. "type": "list<double>",
  1264. "value": [
  1265. 2.2159999999999997,
  1266. 1
  1267. ]
  1268. },
  1269. "mapper": {
  1270. "type": "code",
  1271. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'position': getAttr('position'), 'scale': getAttr('scale')})"
  1272. },
  1273. "parser": {
  1274. "type": "code",
  1275. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'position': getAttr('position'), 'scale': getAttr('scale')})"
  1276. },
  1277. "$contents": {
  1278. "type": "map<string,*>",
  1279. "value": {
  1280. "nodes": {
  1281. "14": {
  1282. "width": {
  1283. "type": "double",
  1284. "value": 250
  1285. },
  1286. "height": {
  1287. "type": "double",
  1288. "value": 250
  1289. },
  1290. "cornerRadius": {
  1291. "type": "double",
  1292. "value": 5
  1293. },
  1294. "style": {
  1295. "type": "map<string,string>",
  1296. "value": {
  1297. "stroke": "#000000",
  1298. "stroke-dasharray": "",
  1299. "fill": "#ffffff",
  1300. "fill-opacity": 0.75,
  1301. "font-size": "20px",
  1302. "stroke-width": 1,
  1303. "arrow-start": "none",
  1304. "arrow-end": "none"
  1305. }
  1306. },
  1307. "mapper": {
  1308. "type": "code",
  1309. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1310. },
  1311. "parser": {
  1312. "type": "code",
  1313. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1314. },
  1315. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1316. "position": {
  1317. "type": "list<double>",
  1318. "value": [
  1319. 8,
  1320. 28
  1321. ]
  1322. },
  1323. "orientation": {
  1324. "type": "double",
  1325. "value": 0
  1326. },
  1327. "scale": {
  1328. "type": "list<double>",
  1329. "value": [
  1330. 1,
  1331. 1
  1332. ]
  1333. }
  1334. },
  1335. "16": {
  1336. "textContent": {
  1337. "type": "string",
  1338. "value": "Processor"
  1339. },
  1340. "style": {
  1341. "type": "map<string,string>",
  1342. "value": {
  1343. "stroke": "#ffffff",
  1344. "stroke-dasharray": "",
  1345. "fill": "#000000",
  1346. "fill-opacity": 1,
  1347. "font-size": "20px",
  1348. "stroke-width": 0,
  1349. "arrow-start": "none",
  1350. "arrow-end": "none"
  1351. }
  1352. },
  1353. "mapper": {
  1354. "type": "code",
  1355. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  1356. },
  1357. "parser": {
  1358. "type": "code",
  1359. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  1360. },
  1361. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1362. "position": {
  1363. "type": "list<double>",
  1364. "value": [
  1365. 8,
  1366. 7
  1367. ]
  1368. },
  1369. "orientation": {
  1370. "type": "double",
  1371. "value": 0
  1372. },
  1373. "scale": {
  1374. "type": "list<double>",
  1375. "value": [
  1376. 1,
  1377. 1
  1378. ]
  1379. }
  1380. }
  1381. },
  1382. "edges": []
  1383. }
  1384. },
  1385. "$asuri": {
  1386. "type": "string",
  1387. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/AtomicDEVS/9.instance"
  1388. },
  1389. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/AtomicDEVSIcon"
  1390. },
  1391. "10": {
  1392. "typename": {
  1393. "type": "string",
  1394. "value": "StateIcon"
  1395. },
  1396. "position": {
  1397. "type": "list<double>",
  1398. "value": [
  1399. 676,
  1400. 449
  1401. ]
  1402. },
  1403. "orientation": {
  1404. "type": "double",
  1405. "value": 0
  1406. },
  1407. "scale": {
  1408. "type": "list<double>",
  1409. "value": [
  1410. 1,
  1411. 1
  1412. ]
  1413. },
  1414. "mapper": {
  1415. "type": "code",
  1416. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'position': getAttr('position')})"
  1417. },
  1418. "parser": {
  1419. "type": "code",
  1420. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'position': getAttr('position')})"
  1421. },
  1422. "$contents": {
  1423. "type": "map<string,*>",
  1424. "value": {
  1425. "nodes": {
  1426. "34": {
  1427. "r": {
  1428. "type": "double",
  1429. "value": 25
  1430. },
  1431. "style": {
  1432. "type": "map<string,string>",
  1433. "value": {
  1434. "stroke": "#000000",
  1435. "stroke-dasharray": "",
  1436. "fill": "#ffffff",
  1437. "fill-opacity": 0.75,
  1438. "font-size": "20px",
  1439. "stroke-width": 2,
  1440. "arrow-start": "none",
  1441. "arrow-end": "none"
  1442. }
  1443. },
  1444. "mapper": {
  1445. "type": "code",
  1446. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar style = {\n \"stroke\": \"#000000\",\n \"stroke-dasharray\": \"\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"stroke-width\": 1,\n \"arrow-start\": \"none\",\n \"arrow-end\": \"none\"\n};\nif (getAttr('initial')) {\n style[\"stroke-width\"] = 2;\n}\n({'style': style})"
  1447. },
  1448. "parser": {
  1449. "type": "code",
  1450. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1451. },
  1452. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1453. "position": {
  1454. "type": "list<double>",
  1455. "value": [
  1456. 4,
  1457. 21
  1458. ]
  1459. },
  1460. "orientation": {
  1461. "type": "double",
  1462. "value": 0
  1463. },
  1464. "scale": {
  1465. "type": "list<double>",
  1466. "value": [
  1467. 1,
  1468. 1
  1469. ]
  1470. }
  1471. },
  1472. "37": {
  1473. "textContent": {
  1474. "type": "string",
  1475. "value": "idle"
  1476. },
  1477. "style": {
  1478. "type": "map<string,string>",
  1479. "value": {
  1480. "stroke": "#000000",
  1481. "stroke-dasharray": "",
  1482. "fill": "green",
  1483. "fill-opacity": 1,
  1484. "font-size": "12px",
  1485. "font-weight": "bold",
  1486. "stroke-width": 0,
  1487. "arrow-start": "none",
  1488. "arrow-end": "none"
  1489. }
  1490. },
  1491. "mapper": {
  1492. "type": "code",
  1493. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  1494. },
  1495. "parser": {
  1496. "type": "code",
  1497. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  1498. },
  1499. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1500. "position": {
  1501. "type": "list<double>",
  1502. "value": [
  1503. 5,
  1504. 6
  1505. ]
  1506. },
  1507. "orientation": {
  1508. "type": "double",
  1509. "value": 0
  1510. },
  1511. "scale": {
  1512. "type": "list<double>",
  1513. "value": [
  1514. 1,
  1515. 1
  1516. ]
  1517. }
  1518. },
  1519. "40": {
  1520. "textContent": {
  1521. "type": "string",
  1522. "value": "return INFINITY"
  1523. },
  1524. "style": {
  1525. "type": "map<string,string>",
  1526. "value": {
  1527. "stroke": "#ffffff",
  1528. "stroke-dasharray": "",
  1529. "fill": "#000000",
  1530. "fill-opacity": 1,
  1531. "font-size": "12px",
  1532. "stroke-width": 0,
  1533. "arrow-start": "none",
  1534. "arrow-end": "none"
  1535. }
  1536. },
  1537. "mapper": {
  1538. "type": "code",
  1539. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('time_advance').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': textContent })"
  1540. },
  1541. "parser": {
  1542. "type": "code",
  1543. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1544. },
  1545. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1546. "position": {
  1547. "type": "list<double>",
  1548. "value": [
  1549. 79,
  1550. 57
  1551. ]
  1552. },
  1553. "orientation": {
  1554. "type": "double",
  1555. "value": 0
  1556. },
  1557. "scale": {
  1558. "type": "list<double>",
  1559. "value": [
  1560. 1,
  1561. 1
  1562. ]
  1563. }
  1564. },
  1565. "42": {
  1566. "src": {
  1567. "type": "string",
  1568. "value": "/Formalisms/ParallelDEVS/icons/clock.png"
  1569. },
  1570. "width": {
  1571. "type": "double",
  1572. "value": 20
  1573. },
  1574. "height": {
  1575. "type": "double",
  1576. "value": 20
  1577. },
  1578. "style": {
  1579. "type": "map<string,string>",
  1580. "value": {
  1581. "stroke": "#000000",
  1582. "stroke-dasharray": "",
  1583. "fill": "#ffffff",
  1584. "fill-opacity": 0.75,
  1585. "font-size": "20px",
  1586. "stroke-width": 1,
  1587. "arrow-start": "none",
  1588. "arrow-end": "none"
  1589. }
  1590. },
  1591. "mapper": {
  1592. "type": "code",
  1593. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1594. },
  1595. "parser": {
  1596. "type": "code",
  1597. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1598. },
  1599. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  1600. "position": {
  1601. "type": "list<double>",
  1602. "value": [
  1603. 56,
  1604. 53
  1605. ]
  1606. },
  1607. "orientation": {
  1608. "type": "double",
  1609. "value": 0
  1610. },
  1611. "scale": {
  1612. "type": "list<double>",
  1613. "value": [
  1614. 1,
  1615. 1
  1616. ]
  1617. }
  1618. },
  1619. "44": {
  1620. "src": {
  1621. "type": "string",
  1622. "value": "/Formalisms/ParallelDEVS/icons/arrow_up.png"
  1623. },
  1624. "width": {
  1625. "type": "double",
  1626. "value": 0
  1627. },
  1628. "height": {
  1629. "type": "double",
  1630. "value": 0
  1631. },
  1632. "style": {
  1633. "type": "map<string,string>",
  1634. "value": {
  1635. "stroke": "#000000",
  1636. "stroke-dasharray": "",
  1637. "fill": "#ffffff",
  1638. "fill-opacity": 1,
  1639. "font-size": "20px",
  1640. "stroke-width": 1,
  1641. "arrow-start": "none",
  1642. "arrow-end": "none"
  1643. }
  1644. },
  1645. "mapper": {
  1646. "type": "code",
  1647. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar width = 20,\n height = 20;\nif (getAttr('output') == \"\") {\n width = 0;\n height = 0;\n}\n({'width': width, 'height': height})"
  1648. },
  1649. "parser": {
  1650. "type": "code",
  1651. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1652. },
  1653. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  1654. "position": {
  1655. "type": "list<double>",
  1656. "value": [
  1657. 55,
  1658. 18
  1659. ]
  1660. },
  1661. "orientation": {
  1662. "type": "double",
  1663. "value": 0
  1664. },
  1665. "scale": {
  1666. "type": "list<double>",
  1667. "value": [
  1668. 1,
  1669. 1
  1670. ]
  1671. }
  1672. },
  1673. "46": {
  1674. "textContent": {
  1675. "type": "string",
  1676. "value": ""
  1677. },
  1678. "style": {
  1679. "type": "map<string,string>",
  1680. "value": {
  1681. "stroke": "#ffffff",
  1682. "stroke-dasharray": "",
  1683. "fill": "#000000",
  1684. "fill-opacity": 1,
  1685. "font-size": "12px",
  1686. "stroke-width": 0,
  1687. "arrow-start": "none",
  1688. "arrow-end": "none"
  1689. }
  1690. },
  1691. "mapper": {
  1692. "type": "code",
  1693. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('output').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': textContent })"
  1694. },
  1695. "parser": {
  1696. "type": "code",
  1697. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1698. },
  1699. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1700. "position": {
  1701. "type": "list<double>",
  1702. "value": [
  1703. 77,
  1704. 23
  1705. ]
  1706. },
  1707. "orientation": {
  1708. "type": "double",
  1709. "value": 0
  1710. },
  1711. "scale": {
  1712. "type": "list<double>",
  1713. "value": [
  1714. 1,
  1715. 1
  1716. ]
  1717. }
  1718. }
  1719. },
  1720. "edges": []
  1721. }
  1722. },
  1723. "$asuri": {
  1724. "type": "string",
  1725. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/State/10.instance"
  1726. },
  1727. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateIcon"
  1728. },
  1729. "11": {
  1730. "typename": {
  1731. "type": "string",
  1732. "value": "StateIcon"
  1733. },
  1734. "position": {
  1735. "type": "list<double>",
  1736. "value": [
  1737. 926,
  1738. 449
  1739. ]
  1740. },
  1741. "orientation": {
  1742. "type": "double",
  1743. "value": 0
  1744. },
  1745. "scale": {
  1746. "type": "list<double>",
  1747. "value": [
  1748. 1,
  1749. 1
  1750. ]
  1751. },
  1752. "mapper": {
  1753. "type": "code",
  1754. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'position': getAttr('position')})"
  1755. },
  1756. "parser": {
  1757. "type": "code",
  1758. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'position': getAttr('position')})"
  1759. },
  1760. "$contents": {
  1761. "type": "map<string,*>",
  1762. "value": {
  1763. "nodes": {
  1764. "34": {
  1765. "r": {
  1766. "type": "double",
  1767. "value": 25
  1768. },
  1769. "style": {
  1770. "type": "map<string,string>",
  1771. "value": {
  1772. "stroke": "#000000",
  1773. "stroke-dasharray": "",
  1774. "fill": "#ffffff",
  1775. "fill-opacity": 0.75,
  1776. "font-size": "20px",
  1777. "stroke-width": 1,
  1778. "arrow-start": "none",
  1779. "arrow-end": "none"
  1780. }
  1781. },
  1782. "mapper": {
  1783. "type": "code",
  1784. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar style = {\n \"stroke\": \"#000000\",\n \"stroke-dasharray\": \"\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"stroke-width\": 1,\n \"arrow-start\": \"none\",\n \"arrow-end\": \"none\"\n};\nif (getAttr('initial')) {\n style[\"stroke-width\"] = 2;\n}\n({'style': style})"
  1785. },
  1786. "parser": {
  1787. "type": "code",
  1788. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1789. },
  1790. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1791. "position": {
  1792. "type": "list<double>",
  1793. "value": [
  1794. 4,
  1795. 21
  1796. ]
  1797. },
  1798. "orientation": {
  1799. "type": "double",
  1800. "value": 0
  1801. },
  1802. "scale": {
  1803. "type": "list<double>",
  1804. "value": [
  1805. 1,
  1806. 1
  1807. ]
  1808. }
  1809. },
  1810. "37": {
  1811. "textContent": {
  1812. "type": "string",
  1813. "value": "processing"
  1814. },
  1815. "style": {
  1816. "type": "map<string,string>",
  1817. "value": {
  1818. "stroke": "#000000",
  1819. "stroke-dasharray": "",
  1820. "fill": "green",
  1821. "fill-opacity": 1,
  1822. "font-size": "12px",
  1823. "font-weight": "bold",
  1824. "stroke-width": 0,
  1825. "arrow-start": "none",
  1826. "arrow-end": "none"
  1827. }
  1828. },
  1829. "mapper": {
  1830. "type": "code",
  1831. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  1832. },
  1833. "parser": {
  1834. "type": "code",
  1835. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  1836. },
  1837. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1838. "position": {
  1839. "type": "list<double>",
  1840. "value": [
  1841. 5,
  1842. 6
  1843. ]
  1844. },
  1845. "orientation": {
  1846. "type": "double",
  1847. "value": 0
  1848. },
  1849. "scale": {
  1850. "type": "list<double>",
  1851. "value": [
  1852. 1,
  1853. 1
  1854. ]
  1855. }
  1856. },
  1857. "40": {
  1858. "textContent": {
  1859. "type": "string",
  1860. "value": "return self.state.current_task.duration"
  1861. },
  1862. "style": {
  1863. "type": "map<string,string>",
  1864. "value": {
  1865. "stroke": "#ffffff",
  1866. "stroke-dasharray": "",
  1867. "fill": "#000000",
  1868. "fill-opacity": 1,
  1869. "font-size": "12px",
  1870. "stroke-width": 0,
  1871. "arrow-start": "none",
  1872. "arrow-end": "none"
  1873. }
  1874. },
  1875. "mapper": {
  1876. "type": "code",
  1877. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('time_advance').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': textContent })"
  1878. },
  1879. "parser": {
  1880. "type": "code",
  1881. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1882. },
  1883. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1884. "position": {
  1885. "type": "list<double>",
  1886. "value": [
  1887. 79,
  1888. 57
  1889. ]
  1890. },
  1891. "orientation": {
  1892. "type": "double",
  1893. "value": 0
  1894. },
  1895. "scale": {
  1896. "type": "list<double>",
  1897. "value": [
  1898. 1,
  1899. 1
  1900. ]
  1901. }
  1902. },
  1903. "42": {
  1904. "src": {
  1905. "type": "string",
  1906. "value": "/Formalisms/ParallelDEVS/icons/clock.png"
  1907. },
  1908. "width": {
  1909. "type": "double",
  1910. "value": 20
  1911. },
  1912. "height": {
  1913. "type": "double",
  1914. "value": 20
  1915. },
  1916. "style": {
  1917. "type": "map<string,string>",
  1918. "value": {
  1919. "stroke": "#000000",
  1920. "stroke-dasharray": "",
  1921. "fill": "#ffffff",
  1922. "fill-opacity": 0.75,
  1923. "font-size": "20px",
  1924. "stroke-width": 1,
  1925. "arrow-start": "none",
  1926. "arrow-end": "none"
  1927. }
  1928. },
  1929. "mapper": {
  1930. "type": "code",
  1931. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1932. },
  1933. "parser": {
  1934. "type": "code",
  1935. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1936. },
  1937. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  1938. "position": {
  1939. "type": "list<double>",
  1940. "value": [
  1941. 56,
  1942. 53
  1943. ]
  1944. },
  1945. "orientation": {
  1946. "type": "double",
  1947. "value": 0
  1948. },
  1949. "scale": {
  1950. "type": "list<double>",
  1951. "value": [
  1952. 1,
  1953. 1
  1954. ]
  1955. }
  1956. },
  1957. "44": {
  1958. "src": {
  1959. "type": "string",
  1960. "value": "/Formalisms/ParallelDEVS/icons/arrow_up.png"
  1961. },
  1962. "width": {
  1963. "type": "double",
  1964. "value": 20
  1965. },
  1966. "height": {
  1967. "type": "double",
  1968. "value": 20
  1969. },
  1970. "style": {
  1971. "type": "map<string,string>",
  1972. "value": {
  1973. "stroke": "#000000",
  1974. "stroke-dasharray": "",
  1975. "fill": "#ffffff",
  1976. "fill-opacity": 1,
  1977. "font-size": "20px",
  1978. "stroke-width": 1,
  1979. "arrow-start": "none",
  1980. "arrow-end": "none"
  1981. }
  1982. },
  1983. "mapper": {
  1984. "type": "code",
  1985. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar width = 20,\n height = 20;\nif (getAttr('output') == \"\") {\n width = 0;\n height = 0;\n}\n({'width': width, 'height': height})"
  1986. },
  1987. "parser": {
  1988. "type": "code",
  1989. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1990. },
  1991. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  1992. "position": {
  1993. "type": "list<double>",
  1994. "value": [
  1995. 55,
  1996. 18
  1997. ]
  1998. },
  1999. "orientation": {
  2000. "type": "double",
  2001. "value": 0
  2002. },
  2003. "scale": {
  2004. "type": "list<double>",
  2005. "value": [
  2006. 1,
  2007. 1
  2008. ]
  2009. }
  2010. },
  2011. "46": {
  2012. "textContent": {
  2013. "type": "string",
  2014. "value": "return {'p_out': [self.state.current_task]}"
  2015. },
  2016. "style": {
  2017. "type": "map<string,string>",
  2018. "value": {
  2019. "stroke": "#ffffff",
  2020. "stroke-dasharray": "",
  2021. "fill": "#000000",
  2022. "fill-opacity": 1,
  2023. "font-size": "12px",
  2024. "stroke-width": 0,
  2025. "arrow-start": "none",
  2026. "arrow-end": "none"
  2027. }
  2028. },
  2029. "mapper": {
  2030. "type": "code",
  2031. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('output').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': textContent })"
  2032. },
  2033. "parser": {
  2034. "type": "code",
  2035. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2036. },
  2037. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2038. "position": {
  2039. "type": "list<double>",
  2040. "value": [
  2041. 77,
  2042. 23
  2043. ]
  2044. },
  2045. "orientation": {
  2046. "type": "double",
  2047. "value": 0
  2048. },
  2049. "scale": {
  2050. "type": "list<double>",
  2051. "value": [
  2052. 1,
  2053. 1
  2054. ]
  2055. }
  2056. }
  2057. },
  2058. "edges": []
  2059. }
  2060. },
  2061. "$asuri": {
  2062. "type": "string",
  2063. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/State/11.instance"
  2064. },
  2065. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateIcon"
  2066. },
  2067. "13": {
  2068. "typename": {
  2069. "type": "string",
  2070. "value": "EventIcon"
  2071. },
  2072. "position": {
  2073. "type": "list<double>",
  2074. "value": [
  2075. 22,
  2076. 152
  2077. ]
  2078. },
  2079. "orientation": {
  2080. "type": "double",
  2081. "value": 0
  2082. },
  2083. "scale": {
  2084. "type": "list<double>",
  2085. "value": [
  2086. 1,
  2087. 1
  2088. ]
  2089. },
  2090. "mapper": {
  2091. "type": "code",
  2092. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2093. },
  2094. "parser": {
  2095. "type": "code",
  2096. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2097. },
  2098. "$contents": {
  2099. "type": "map<string,*>",
  2100. "value": {
  2101. "nodes": {
  2102. "58": {
  2103. "width": {
  2104. "type": "double",
  2105. "value": 200
  2106. },
  2107. "height": {
  2108. "type": "double",
  2109. "value": 70
  2110. },
  2111. "cornerRadius": {
  2112. "type": "double",
  2113. "value": 25
  2114. },
  2115. "style": {
  2116. "type": "map<string,string>",
  2117. "value": {
  2118. "stroke": "#000000",
  2119. "stroke-dasharray": "",
  2120. "fill": "#FAE233",
  2121. "fill-opacity": 0.5,
  2122. "font-size": "20px",
  2123. "stroke-width": 1,
  2124. "arrow-start": "none",
  2125. "arrow-end": "none"
  2126. }
  2127. },
  2128. "mapper": {
  2129. "type": "code",
  2130. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2131. },
  2132. "parser": {
  2133. "type": "code",
  2134. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2135. },
  2136. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2137. "position": {
  2138. "type": "list<double>",
  2139. "value": [
  2140. 4,
  2141. 25
  2142. ]
  2143. },
  2144. "orientation": {
  2145. "type": "double",
  2146. "value": 0
  2147. },
  2148. "scale": {
  2149. "type": "list<double>",
  2150. "value": [
  2151. 1,
  2152. 1
  2153. ]
  2154. }
  2155. },
  2156. "61": {
  2157. "textContent": {
  2158. "type": "string",
  2159. "value": "Task"
  2160. },
  2161. "style": {
  2162. "type": "map<string,string>",
  2163. "value": {
  2164. "stroke": "#ffffff",
  2165. "stroke-dasharray": "",
  2166. "fill": "#000000",
  2167. "fill-opacity": 1,
  2168. "font-size": "20px",
  2169. "stroke-width": 0,
  2170. "arrow-start": "none",
  2171. "arrow-end": "none"
  2172. }
  2173. },
  2174. "mapper": {
  2175. "type": "code",
  2176. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  2177. },
  2178. "parser": {
  2179. "type": "code",
  2180. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  2181. },
  2182. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2183. "position": {
  2184. "type": "list<double>",
  2185. "value": [
  2186. 63,
  2187. 3
  2188. ]
  2189. },
  2190. "orientation": {
  2191. "type": "double",
  2192. "value": 0
  2193. },
  2194. "scale": {
  2195. "type": "list<double>",
  2196. "value": [
  2197. 1,
  2198. 1
  2199. ]
  2200. }
  2201. },
  2202. "63": {
  2203. "textContent": {
  2204. "type": "string",
  2205. "value": "+ duration : float"
  2206. },
  2207. "style": {
  2208. "type": "map<string,string>",
  2209. "value": {
  2210. "stroke": "#ffffff",
  2211. "stroke-dasharray": "",
  2212. "fill": "#000000",
  2213. "fill-opacity": 1,
  2214. "font-size": "12px",
  2215. "stroke-width": 0,
  2216. "arrow-start": "none",
  2217. "arrow-end": "none"
  2218. }
  2219. },
  2220. "mapper": {
  2221. "type": "code",
  2222. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar filenames = getAttr('attributes').map(\n function(attr)\n {\n var s = '+ '+attr['name'] + ' : ' + attr['type'];\n if (attr['default'])\n s += ' = ' + attr['default'];\n return s;\n });\n\n({'textContent': filenames.join('\\n')})"
  2223. },
  2224. "parser": {
  2225. "type": "code",
  2226. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2227. },
  2228. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2229. "position": {
  2230. "type": "list<double>",
  2231. "value": [
  2232. 11,
  2233. 31
  2234. ]
  2235. },
  2236. "orientation": {
  2237. "type": "double",
  2238. "value": 0
  2239. },
  2240. "scale": {
  2241. "type": "list<double>",
  2242. "value": [
  2243. 1,
  2244. 1
  2245. ]
  2246. }
  2247. },
  2248. "64": {
  2249. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2250. "position": {
  2251. "type": "list<double>",
  2252. "value": [
  2253. 26.96484375,
  2254. 35.5
  2255. ]
  2256. },
  2257. "orientation": {
  2258. "type": "double",
  2259. "value": 0
  2260. },
  2261. "scale": {
  2262. "type": "list<double>",
  2263. "value": [
  2264. 1,
  2265. 1
  2266. ]
  2267. },
  2268. "link-style": {
  2269. "type": "map<string,string>",
  2270. "value": {
  2271. "stroke": "#00ffff",
  2272. "stroke-dasharray": "",
  2273. "stroke-opacity": 0.1,
  2274. "stroke-width": 1
  2275. }
  2276. }
  2277. }
  2278. },
  2279. "edges": [
  2280. {
  2281. "src": "58",
  2282. "dest": "64"
  2283. },
  2284. {
  2285. "src": "64",
  2286. "dest": "63"
  2287. }
  2288. ]
  2289. }
  2290. },
  2291. "$asuri": {
  2292. "type": "string",
  2293. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/Event/13.instance"
  2294. },
  2295. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/EventIcon"
  2296. },
  2297. "14": {
  2298. "typename": {
  2299. "type": "string",
  2300. "value": "StateDefinitionIcon"
  2301. },
  2302. "position": {
  2303. "type": "list<double>",
  2304. "value": [
  2305. 847,
  2306. 152
  2307. ]
  2308. },
  2309. "orientation": {
  2310. "type": "double",
  2311. "value": 0
  2312. },
  2313. "scale": {
  2314. "type": "list<double>",
  2315. "value": [
  2316. 1,
  2317. 1
  2318. ]
  2319. },
  2320. "mapper": {
  2321. "type": "code",
  2322. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2323. },
  2324. "parser": {
  2325. "type": "code",
  2326. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2327. },
  2328. "$contents": {
  2329. "type": "map<string,*>",
  2330. "value": {
  2331. "nodes": {
  2332. "82": {
  2333. "width": {
  2334. "type": "double",
  2335. "value": 200
  2336. },
  2337. "height": {
  2338. "type": "double",
  2339. "value": 125
  2340. },
  2341. "cornerRadius": {
  2342. "type": "double",
  2343. "value": 10
  2344. },
  2345. "style": {
  2346. "type": "map<string,string>",
  2347. "value": {
  2348. "stroke": "#000000",
  2349. "stroke-dasharray": "",
  2350. "fill": "orange",
  2351. "fill-opacity": 0.75,
  2352. "stroke-width": 1
  2353. }
  2354. },
  2355. "mapper": {
  2356. "type": "code",
  2357. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2358. },
  2359. "parser": {
  2360. "type": "code",
  2361. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2362. },
  2363. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2364. "position": {
  2365. "type": "list<double>",
  2366. "value": [
  2367. 4,
  2368. 3
  2369. ]
  2370. },
  2371. "orientation": {
  2372. "type": "double",
  2373. "value": 0
  2374. },
  2375. "scale": {
  2376. "type": "list<double>",
  2377. "value": [
  2378. 1,
  2379. 1
  2380. ]
  2381. }
  2382. },
  2383. "85": {
  2384. "segments": {
  2385. "type": "string",
  2386. "value": "m0,0l197,0"
  2387. },
  2388. "style": {
  2389. "type": "map<string,string>",
  2390. "value": {
  2391. "stroke": "#000000",
  2392. "stroke-dasharray": "",
  2393. "fill": "#ffffff",
  2394. "fill-opacity": 0.75,
  2395. "font-size": "20px",
  2396. "stroke-width": 1,
  2397. "arrow-start": "none",
  2398. "arrow-end": "none"
  2399. }
  2400. },
  2401. "mapper": {
  2402. "type": "code",
  2403. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2404. },
  2405. "parser": {
  2406. "type": "code",
  2407. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2408. },
  2409. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2410. "position": {
  2411. "type": "list<double>",
  2412. "value": [
  2413. 6,
  2414. 36
  2415. ]
  2416. },
  2417. "orientation": {
  2418. "type": "double",
  2419. "value": 0
  2420. },
  2421. "scale": {
  2422. "type": "list<double>",
  2423. "value": [
  2424. 1,
  2425. 1
  2426. ]
  2427. }
  2428. },
  2429. "86": {
  2430. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2431. "position": {
  2432. "type": "list<double>",
  2433. "value": [
  2434. 53.75,
  2435. 20
  2436. ]
  2437. },
  2438. "orientation": {
  2439. "type": "double",
  2440. "value": 0
  2441. },
  2442. "scale": {
  2443. "type": "list<double>",
  2444. "value": [
  2445. 1,
  2446. 1
  2447. ]
  2448. },
  2449. "link-style": {
  2450. "type": "map<string,string>",
  2451. "value": {
  2452. "stroke": "#00ffff",
  2453. "stroke-dasharray": "",
  2454. "stroke-opacity": 0.1,
  2455. "stroke-width": 1
  2456. }
  2457. }
  2458. },
  2459. "90": {
  2460. "textContent": {
  2461. "type": "string",
  2462. "value": "+ queue : list<Task> = \n+ current_task : Task"
  2463. },
  2464. "style": {
  2465. "type": "map<string,string>",
  2466. "value": {
  2467. "stroke": "#ffffff",
  2468. "stroke-dasharray": "",
  2469. "fill": "#000000",
  2470. "fill-opacity": 1,
  2471. "font-size": "12px",
  2472. "stroke-width": 0,
  2473. "arrow-start": "none",
  2474. "arrow-end": "none"
  2475. }
  2476. },
  2477. "mapper": {
  2478. "type": "code",
  2479. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar filenames = getAttr('attributes').map(\n function(attr)\n {\n var s = '+ '+attr['name'] + ' : ' + attr['type'];\n if (attr['default'])\n s += ' = ' + attr['default'];\n return s;\n });\n\n({'textContent': filenames.join('\\n')})"
  2480. },
  2481. "parser": {
  2482. "type": "code",
  2483. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2484. },
  2485. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2486. "position": {
  2487. "type": "list<double>",
  2488. "value": [
  2489. 9,
  2490. 41
  2491. ]
  2492. },
  2493. "orientation": {
  2494. "type": "double",
  2495. "value": 0
  2496. },
  2497. "scale": {
  2498. "type": "list<double>",
  2499. "value": [
  2500. 1,
  2501. 1
  2502. ]
  2503. }
  2504. },
  2505. "92": {
  2506. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2507. "position": {
  2508. "type": "list<double>",
  2509. "value": [
  2510. 18.1796875,
  2511. 26
  2512. ]
  2513. },
  2514. "orientation": {
  2515. "type": "double",
  2516. "value": 0
  2517. },
  2518. "scale": {
  2519. "type": "list<double>",
  2520. "value": [
  2521. 1,
  2522. 1
  2523. ]
  2524. },
  2525. "link-style": {
  2526. "type": "map<string,string>",
  2527. "value": {
  2528. "stroke": "#00ffff",
  2529. "stroke-dasharray": "",
  2530. "stroke-opacity": 0.1,
  2531. "stroke-width": 1
  2532. }
  2533. }
  2534. },
  2535. "93": {
  2536. "textContent": {
  2537. "type": "string",
  2538. "value": "ProcessorState"
  2539. },
  2540. "style": {
  2541. "type": "map<string,string>",
  2542. "value": {
  2543. "stroke": "#ffffff",
  2544. "stroke-dasharray": "",
  2545. "fill": "#000000",
  2546. "fill-opacity": 1,
  2547. "font-size": "20px",
  2548. "stroke-width": 0,
  2549. "arrow-start": "none",
  2550. "arrow-end": "none"
  2551. }
  2552. },
  2553. "mapper": {
  2554. "type": "code",
  2555. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  2556. },
  2557. "parser": {
  2558. "type": "code",
  2559. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  2560. },
  2561. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2562. "position": {
  2563. "type": "list<double>",
  2564. "value": [
  2565. 8,
  2566. 9
  2567. ]
  2568. },
  2569. "orientation": {
  2570. "type": "double",
  2571. "value": 0
  2572. },
  2573. "scale": {
  2574. "type": "list<double>",
  2575. "value": [
  2576. 1,
  2577. 1
  2578. ]
  2579. }
  2580. },
  2581. "94": {
  2582. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2583. "position": {
  2584. "type": "list<double>",
  2585. "value": [
  2586. 25.607941766118074,
  2587. 12.053332982167333
  2588. ]
  2589. },
  2590. "orientation": {
  2591. "type": "double",
  2592. "value": 0
  2593. },
  2594. "scale": {
  2595. "type": "list<double>",
  2596. "value": [
  2597. 1,
  2598. 1
  2599. ]
  2600. },
  2601. "link-style": {
  2602. "type": "map<string,string>",
  2603. "value": {
  2604. "stroke": "#00ffff",
  2605. "stroke-dasharray": "",
  2606. "stroke-opacity": 0.1,
  2607. "stroke-width": 1
  2608. }
  2609. }
  2610. }
  2611. },
  2612. "edges": [
  2613. {
  2614. "src": "82",
  2615. "dest": "86"
  2616. },
  2617. {
  2618. "src": "86",
  2619. "dest": "85"
  2620. },
  2621. {
  2622. "src": "82",
  2623. "dest": "92"
  2624. },
  2625. {
  2626. "src": "92",
  2627. "dest": "90"
  2628. },
  2629. {
  2630. "src": "82",
  2631. "dest": "94"
  2632. },
  2633. {
  2634. "src": "94",
  2635. "dest": "93"
  2636. }
  2637. ]
  2638. }
  2639. },
  2640. "$asuri": {
  2641. "type": "string",
  2642. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/StateDefinition/14.instance"
  2643. },
  2644. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateDefinitionIcon"
  2645. },
  2646. "15": {
  2647. "link-style": {
  2648. "type": "map<string,string>",
  2649. "value": {
  2650. "stroke": "red",
  2651. "stroke-dasharray": "",
  2652. "stroke-opacity": 1,
  2653. "stroke-width": 2
  2654. }
  2655. },
  2656. "arrowHead": {
  2657. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  2658. "value": "custom"
  2659. },
  2660. "arrowTail": {
  2661. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  2662. "value": "arrow-black"
  2663. },
  2664. "typename": {
  2665. "type": "string",
  2666. "value": "ExternalTransitionLink"
  2667. },
  2668. "position": {
  2669. "type": "list<double>",
  2670. "value": [
  2671. 860.7501909800817,
  2672. 376
  2673. ]
  2674. },
  2675. "orientation": {
  2676. "type": "double",
  2677. "value": 0
  2678. },
  2679. "scale": {
  2680. "type": "list<double>",
  2681. "value": [
  2682. 1,
  2683. 1
  2684. ]
  2685. },
  2686. "mapper": {
  2687. "type": "code",
  2688. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2689. },
  2690. "parser": {
  2691. "type": "code",
  2692. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2693. },
  2694. "$contents": {
  2695. "type": "map<string,*>",
  2696. "value": {
  2697. "nodes": {
  2698. "73": {
  2699. "textContent": {
  2700. "type": "string",
  2701. "value": "[]"
  2702. },
  2703. "style": {
  2704. "type": "map<string,string>",
  2705. "value": {
  2706. "stroke": "#ffffff",
  2707. "stroke-dasharray": "",
  2708. "fill": "#000000",
  2709. "fill-opacity": 1,
  2710. "font-size": "12px",
  2711. "stroke-width": 0,
  2712. "arrow-start": "none",
  2713. "arrow-end": "none"
  2714. }
  2715. },
  2716. "mapper": {
  2717. "type": "code",
  2718. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('condition').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': '[' + textContent + ']'})"
  2719. },
  2720. "parser": {
  2721. "type": "code",
  2722. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2723. },
  2724. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2725. "position": {
  2726. "type": "list<double>",
  2727. "value": [
  2728. "0;-40.56319469369066,0%",
  2729. "0;-23.252794701887296,0%"
  2730. ]
  2731. },
  2732. "orientation": {
  2733. "type": "double",
  2734. "value": "0;-16.313852426260556"
  2735. },
  2736. "scale": {
  2737. "type": "list<double>",
  2738. "value": [
  2739. 1,
  2740. 1
  2741. ]
  2742. },
  2743. "$linkDecoratorInfo": {
  2744. "type": "map<string,double>",
  2745. "value": {
  2746. "xratio": 0.4110429447852761,
  2747. "yoffset": -33.5
  2748. }
  2749. }
  2750. },
  2751. "75": {
  2752. "textContent": {
  2753. "type": "string",
  2754. "value": "...\n# set current task"
  2755. },
  2756. "style": {
  2757. "type": "map<string,string>",
  2758. "value": {
  2759. "stroke": "#ffffff",
  2760. "stroke-dasharray": "",
  2761. "fill": "#000000",
  2762. "fill-opacity": 1,
  2763. "font-size": "12px",
  2764. "stroke-width": 0,
  2765. "arrow-start": "none",
  2766. "arrow-end": "none"
  2767. }
  2768. },
  2769. "mapper": {
  2770. "type": "code",
  2771. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('action').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': textContent})"
  2772. },
  2773. "parser": {
  2774. "type": "code",
  2775. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2776. },
  2777. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2778. "position": {
  2779. "type": "list<double>",
  2780. "value": [
  2781. "0;-25.809644094995065,0%",
  2782. "0;9.939353273059226,0%"
  2783. ]
  2784. },
  2785. "orientation": {
  2786. "type": "double",
  2787. "value": "0;-16.313852426260556"
  2788. },
  2789. "scale": {
  2790. "type": "list<double>",
  2791. "value": [
  2792. 1,
  2793. 1
  2794. ]
  2795. },
  2796. "$linkDecoratorInfo": {
  2797. "type": "map<string,double>",
  2798. "value": {
  2799. "xratio": 0.4233128834355828,
  2800. "yoffset": 2.5
  2801. }
  2802. }
  2803. },
  2804. "267": {
  2805. "segments": {
  2806. "type": "string",
  2807. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  2808. },
  2809. "style": {
  2810. "type": "map<string,string>",
  2811. "value": {
  2812. "stroke": "#000000",
  2813. "fill": "#000000",
  2814. "opacity": 1,
  2815. "stroke-width": 1
  2816. }
  2817. },
  2818. "mapper": {
  2819. "type": "code",
  2820. "value": ""
  2821. },
  2822. "parser": {
  2823. "type": "code",
  2824. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2825. },
  2826. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2827. "position": {
  2828. "type": "list<double>",
  2829. "value": [
  2830. "0;100.80351264734804,-45.90200518763383%",
  2831. "0;93.83608020750535,88.84259068574282%"
  2832. ]
  2833. },
  2834. "orientation": {
  2835. "type": "double",
  2836. "value": "0;117.32389130134655"
  2837. },
  2838. "scale": {
  2839. "type": "list<double>",
  2840. "value": [
  2841. 1,
  2842. 1
  2843. ]
  2844. },
  2845. "$linkDecoratorInfo": {
  2846. "type": "map<string,double>",
  2847. "value": {
  2848. "xratio": 1,
  2849. "yoffset": -4
  2850. }
  2851. }
  2852. }
  2853. },
  2854. "edges": []
  2855. }
  2856. },
  2857. "$asuri": {
  2858. "type": "string",
  2859. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/ExternalTransition/15.instance"
  2860. },
  2861. "$segments": {
  2862. "type": "map<string,list<string>>",
  2863. "value": {
  2864. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateIcon/10.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/ExternalTransitionLink/15.instance": "M719,475L737,412L860,376",
  2865. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/ExternalTransitionLink/15.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateIcon/11.instance": "M860,376L989,408L958,468"
  2866. }
  2867. },
  2868. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/ExternalTransitionLink"
  2869. },
  2870. "16": {
  2871. "link-style": {
  2872. "type": "map<string,string>",
  2873. "value": {
  2874. "stroke": "blue",
  2875. "stroke-dasharray": "",
  2876. "stroke-opacity": 1,
  2877. "stroke-width": 2
  2878. }
  2879. },
  2880. "arrowHead": {
  2881. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  2882. "value": "custom"
  2883. },
  2884. "arrowTail": {
  2885. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  2886. "value": "arrow-black"
  2887. },
  2888. "typename": {
  2889. "type": "string",
  2890. "value": "InternalTransitionLink"
  2891. },
  2892. "position": {
  2893. "type": "list<double>",
  2894. "value": [
  2895. 828.1000099852071,
  2896. 531
  2897. ]
  2898. },
  2899. "orientation": {
  2900. "type": "double",
  2901. "value": 0
  2902. },
  2903. "scale": {
  2904. "type": "list<double>",
  2905. "value": [
  2906. 1,
  2907. 1
  2908. ]
  2909. },
  2910. "mapper": {
  2911. "type": "code",
  2912. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2913. },
  2914. "parser": {
  2915. "type": "code",
  2916. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2917. },
  2918. "$contents": {
  2919. "type": "map<string,*>",
  2920. "value": {
  2921. "nodes": {
  2922. "77": {
  2923. "textContent": {
  2924. "type": "string",
  2925. "value": "[return not self.state.queue]"
  2926. },
  2927. "style": {
  2928. "type": "map<string,string>",
  2929. "value": {
  2930. "stroke": "#ffffff",
  2931. "stroke-dasharray": "",
  2932. "fill": "#000000",
  2933. "fill-opacity": 1,
  2934. "font-size": "12px",
  2935. "stroke-width": 0,
  2936. "arrow-start": "none",
  2937. "arrow-end": "none"
  2938. }
  2939. },
  2940. "mapper": {
  2941. "type": "code",
  2942. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('condition').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': '[' + textContent + ']'})"
  2943. },
  2944. "parser": {
  2945. "type": "code",
  2946. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2947. },
  2948. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2949. "position": {
  2950. "type": "list<double>",
  2951. "value": [
  2952. "0;17.152089737791016,0%",
  2953. "0;31.5,0%"
  2954. ]
  2955. },
  2956. "orientation": {
  2957. "type": "double",
  2958. "value": "0;180"
  2959. },
  2960. "scale": {
  2961. "type": "list<double>",
  2962. "value": [
  2963. 1,
  2964. 1
  2965. ]
  2966. },
  2967. "$linkDecoratorInfo": {
  2968. "type": "map<string,double>",
  2969. "value": {
  2970. "xratio": 0.4294478527607362,
  2971. "yoffset": -31.5
  2972. }
  2973. }
  2974. },
  2975. "78": {
  2976. "textContent": {
  2977. "type": "string",
  2978. "value": "...\n# clear state"
  2979. },
  2980. "style": {
  2981. "type": "map<string,string>",
  2982. "value": {
  2983. "stroke": "#ffffff",
  2984. "stroke-dasharray": "",
  2985. "fill": "#000000",
  2986. "fill-opacity": 1,
  2987. "font-size": "12px",
  2988. "stroke-width": 0,
  2989. "arrow-start": "none",
  2990. "arrow-end": "none"
  2991. }
  2992. },
  2993. "mapper": {
  2994. "type": "code",
  2995. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('action').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': textContent})"
  2996. },
  2997. "parser": {
  2998. "type": "code",
  2999. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3000. },
  3001. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3002. "position": {
  3003. "type": "list<double>",
  3004. "value": [
  3005. "0;17.152089737791016,0%",
  3006. "0;-2.5,0%"
  3007. ]
  3008. },
  3009. "orientation": {
  3010. "type": "double",
  3011. "value": "0;180"
  3012. },
  3013. "scale": {
  3014. "type": "list<double>",
  3015. "value": [
  3016. 1,
  3017. 1
  3018. ]
  3019. },
  3020. "$linkDecoratorInfo": {
  3021. "type": "map<string,double>",
  3022. "value": {
  3023. "xratio": 0.4294478527607362,
  3024. "yoffset": 2.5
  3025. }
  3026. }
  3027. },
  3028. "267": {
  3029. "segments": {
  3030. "type": "string",
  3031. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  3032. },
  3033. "style": {
  3034. "type": "map<string,string>",
  3035. "value": {
  3036. "stroke": "#000000",
  3037. "fill": "#000000",
  3038. "opacity": 1,
  3039. "stroke-width": 1
  3040. }
  3041. },
  3042. "mapper": {
  3043. "type": "code",
  3044. "value": ""
  3045. },
  3046. "parser": {
  3047. "type": "code",
  3048. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3049. },
  3050. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3051. "position": {
  3052. "type": "list<double>",
  3053. "value": [
  3054. "0;-119.70317547903096,-75.92566023652968%",
  3055. "0;-8.962973590538809,-65.07913734559683%"
  3056. ]
  3057. },
  3058. "orientation": {
  3059. "type": "double",
  3060. "value": "0;-139.39870535499554"
  3061. },
  3062. "scale": {
  3063. "type": "list<double>",
  3064. "value": [
  3065. 1,
  3066. 1
  3067. ]
  3068. },
  3069. "$linkDecoratorInfo": {
  3070. "type": "map<string,double>",
  3071. "value": {
  3072. "xratio": 1,
  3073. "yoffset": -4
  3074. }
  3075. }
  3076. }
  3077. },
  3078. "edges": []
  3079. }
  3080. },
  3081. "$asuri": {
  3082. "type": "string",
  3083. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/InternalTransition/16.instance"
  3084. },
  3085. "$segments": {
  3086. "type": "map<string,list<string>>",
  3087. "value": {
  3088. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateIcon/11.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/InternalTransitionLink/16.instance": "M942.0000000000002,517L933,531L828.100009985207,531",
  3089. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/InternalTransitionLink/16.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateIcon/10.instance": "M828.100009985207,531L725,531L711,519"
  3090. }
  3091. },
  3092. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/InternalTransitionLink"
  3093. },
  3094. "17": {
  3095. "link-style": {
  3096. "type": "map<string,string>",
  3097. "value": {
  3098. "stroke": "blue",
  3099. "stroke-dasharray": "",
  3100. "stroke-opacity": 1,
  3101. "stroke-width": 2
  3102. }
  3103. },
  3104. "arrowHead": {
  3105. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  3106. "value": "custom"
  3107. },
  3108. "arrowTail": {
  3109. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  3110. "value": "arrow-black"
  3111. },
  3112. "typename": {
  3113. "type": "string",
  3114. "value": "InternalTransitionLink"
  3115. },
  3116. "position": {
  3117. "type": "list<double>",
  3118. "value": [
  3119. 895.6499979188343,
  3120. 500
  3121. ]
  3122. },
  3123. "orientation": {
  3124. "type": "double",
  3125. "value": 0
  3126. },
  3127. "scale": {
  3128. "type": "list<double>",
  3129. "value": [
  3130. 1,
  3131. 1
  3132. ]
  3133. },
  3134. "mapper": {
  3135. "type": "code",
  3136. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3137. },
  3138. "parser": {
  3139. "type": "code",
  3140. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3141. },
  3142. "$contents": {
  3143. "type": "map<string,*>",
  3144. "value": {
  3145. "nodes": {
  3146. "77": {
  3147. "textContent": {
  3148. "type": "string",
  3149. "value": "[return self.state.queue]"
  3150. },
  3151. "style": {
  3152. "type": "map<string,string>",
  3153. "value": {
  3154. "stroke": "#ffffff",
  3155. "stroke-dasharray": "",
  3156. "fill": "#000000",
  3157. "fill-opacity": 1,
  3158. "font-size": "12px",
  3159. "stroke-width": 0,
  3160. "arrow-start": "none",
  3161. "arrow-end": "none"
  3162. }
  3163. },
  3164. "mapper": {
  3165. "type": "code",
  3166. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('condition').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': '[' + textContent + ']'})"
  3167. },
  3168. "parser": {
  3169. "type": "code",
  3170. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3171. },
  3172. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3173. "position": {
  3174. "type": "list<double>",
  3175. "value": [
  3176. "0;-16.520522179835893,0%",
  3177. "0;27.969490409266257,0%"
  3178. ]
  3179. },
  3180. "orientation": {
  3181. "type": "double",
  3182. "value": "0;-138.81407483429035"
  3183. },
  3184. "scale": {
  3185. "type": "list<double>",
  3186. "value": [
  3187. 1,
  3188. 1
  3189. ]
  3190. },
  3191. "$linkDecoratorInfo": {
  3192. "type": "map<string,double>",
  3193. "value": {
  3194. "xratio": 0.4294478527607362,
  3195. "yoffset": -31.5
  3196. }
  3197. }
  3198. },
  3199. "78": {
  3200. "textContent": {
  3201. "type": "string",
  3202. "value": "...\n# pop current task"
  3203. },
  3204. "style": {
  3205. "type": "map<string,string>",
  3206. "value": {
  3207. "stroke": "#ffffff",
  3208. "stroke-dasharray": "",
  3209. "fill": "#000000",
  3210. "fill-opacity": 1,
  3211. "font-size": "12px",
  3212. "stroke-width": 0,
  3213. "arrow-start": "none",
  3214. "arrow-end": "none"
  3215. }
  3216. },
  3217. "mapper": {
  3218. "type": "code",
  3219. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('action').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': textContent})"
  3220. },
  3221. "parser": {
  3222. "type": "code",
  3223. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3224. },
  3225. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3226. "position": {
  3227. "type": "list<double>",
  3228. "value": [
  3229. "0;5.8686344876937255,0%",
  3230. "0;2.3818827892324066,0%"
  3231. ]
  3232. },
  3233. "orientation": {
  3234. "type": "double",
  3235. "value": "0;-138.81407483429035"
  3236. },
  3237. "scale": {
  3238. "type": "list<double>",
  3239. "value": [
  3240. 1,
  3241. 1
  3242. ]
  3243. },
  3244. "$linkDecoratorInfo": {
  3245. "type": "map<string,double>",
  3246. "value": {
  3247. "xratio": 0.4294478527607362,
  3248. "yoffset": 2.5
  3249. }
  3250. }
  3251. },
  3252. "267": {
  3253. "segments": {
  3254. "type": "string",
  3255. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  3256. },
  3257. "style": {
  3258. "type": "map<string,string>",
  3259. "value": {
  3260. "stroke": "#000000",
  3261. "fill": "#000000",
  3262. "opacity": 1,
  3263. "stroke-width": 1
  3264. }
  3265. },
  3266. "mapper": {
  3267. "type": "code",
  3268. "value": ""
  3269. },
  3270. "parser": {
  3271. "type": "code",
  3272. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3273. },
  3274. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3275. "position": {
  3276. "type": "list<double>",
  3277. "value": [
  3278. "0;37.64548882322697,99.7267754456709%",
  3279. "0;-17.98907101782686,7.387168551531179%"
  3280. ]
  3281. },
  3282. "orientation": {
  3283. "type": "double",
  3284. "value": "0;4.236394799058841"
  3285. },
  3286. "scale": {
  3287. "type": "list<double>",
  3288. "value": [
  3289. 1,
  3290. 1
  3291. ]
  3292. },
  3293. "$linkDecoratorInfo": {
  3294. "type": "map<string,double>",
  3295. "value": {
  3296. "xratio": 1,
  3297. "yoffset": -4
  3298. }
  3299. }
  3300. }
  3301. },
  3302. "edges": []
  3303. }
  3304. },
  3305. "$asuri": {
  3306. "type": "string",
  3307. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/InternalTransition/17.instance"
  3308. },
  3309. "$segments": {
  3310. "type": "map<string,list<string>>",
  3311. "value": {
  3312. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateIcon/11.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/InternalTransitionLink/17.instance": "M935.9999999999998,512L911,514L895,500",
  3313. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/InternalTransitionLink/17.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateIcon/11.instance": "M895,500L906,484L933,486"
  3314. }
  3315. },
  3316. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/InternalTransitionLink"
  3317. },
  3318. "18": {
  3319. "link-style": {
  3320. "type": "map<string,string>",
  3321. "value": {
  3322. "stroke": "red",
  3323. "stroke-dasharray": "",
  3324. "stroke-opacity": 1,
  3325. "stroke-width": 2
  3326. }
  3327. },
  3328. "arrowHead": {
  3329. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  3330. "value": "custom"
  3331. },
  3332. "arrowTail": {
  3333. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  3334. "value": "arrow-black"
  3335. },
  3336. "typename": {
  3337. "type": "string",
  3338. "value": "ExternalTransitionLink"
  3339. },
  3340. "position": {
  3341. "type": "list<double>",
  3342. "value": [
  3343. 957.498046875,
  3344. 534
  3345. ]
  3346. },
  3347. "orientation": {
  3348. "type": "double",
  3349. "value": 0
  3350. },
  3351. "scale": {
  3352. "type": "list<double>",
  3353. "value": [
  3354. 1,
  3355. 1
  3356. ]
  3357. },
  3358. "mapper": {
  3359. "type": "code",
  3360. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3361. },
  3362. "parser": {
  3363. "type": "code",
  3364. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3365. },
  3366. "$contents": {
  3367. "type": "map<string,*>",
  3368. "value": {
  3369. "nodes": {
  3370. "73": {
  3371. "textContent": {
  3372. "type": "string",
  3373. "value": "[]"
  3374. },
  3375. "style": {
  3376. "type": "map<string,string>",
  3377. "value": {
  3378. "stroke": "#ffffff",
  3379. "stroke-dasharray": "",
  3380. "fill": "#000000",
  3381. "fill-opacity": 1,
  3382. "font-size": "12px",
  3383. "stroke-width": 0,
  3384. "arrow-start": "none",
  3385. "arrow-end": "none"
  3386. }
  3387. },
  3388. "mapper": {
  3389. "type": "code",
  3390. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('condition').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': '[' + textContent + ']'})"
  3391. },
  3392. "parser": {
  3393. "type": "code",
  3394. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3395. },
  3396. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3397. "position": {
  3398. "type": "list<double>",
  3399. "value": [
  3400. "0;-6.042328275525392,0%",
  3401. "0;-33.5,0%"
  3402. ]
  3403. },
  3404. "orientation": {
  3405. "type": "double",
  3406. "value": "0;0"
  3407. },
  3408. "scale": {
  3409. "type": "list<double>",
  3410. "value": [
  3411. 1,
  3412. 1
  3413. ]
  3414. },
  3415. "$linkDecoratorInfo": {
  3416. "type": "map<string,double>",
  3417. "value": {
  3418. "xratio": 0.4110429447852761,
  3419. "yoffset": -33.5
  3420. }
  3421. }
  3422. },
  3423. "75": {
  3424. "textContent": {
  3425. "type": "string",
  3426. "value": "...\n# append to queue"
  3427. },
  3428. "style": {
  3429. "type": "map<string,string>",
  3430. "value": {
  3431. "stroke": "#ffffff",
  3432. "stroke-dasharray": "",
  3433. "fill": "#000000",
  3434. "fill-opacity": 1,
  3435. "font-size": "12px",
  3436. "stroke-width": 0,
  3437. "arrow-start": "none",
  3438. "arrow-end": "none"
  3439. }
  3440. },
  3441. "mapper": {
  3442. "type": "code",
  3443. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('action').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': textContent})"
  3444. },
  3445. "parser": {
  3446. "type": "code",
  3447. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3448. },
  3449. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3450. "position": {
  3451. "type": "list<double>",
  3452. "value": [
  3453. "0;-5.219037705493406,0%",
  3454. "0;2.5,0%"
  3455. ]
  3456. },
  3457. "orientation": {
  3458. "type": "double",
  3459. "value": "0;0"
  3460. },
  3461. "scale": {
  3462. "type": "list<double>",
  3463. "value": [
  3464. 1,
  3465. 1
  3466. ]
  3467. },
  3468. "$linkDecoratorInfo": {
  3469. "type": "map<string,double>",
  3470. "value": {
  3471. "xratio": 0.4233128834355828,
  3472. "yoffset": 2.5
  3473. }
  3474. }
  3475. },
  3476. "267": {
  3477. "segments": {
  3478. "type": "string",
  3479. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  3480. },
  3481. "style": {
  3482. "type": "map<string,string>",
  3483. "value": {
  3484. "stroke": "#000000",
  3485. "fill": "#000000",
  3486. "opacity": 1,
  3487. "stroke-width": 1
  3488. }
  3489. },
  3490. "mapper": {
  3491. "type": "code",
  3492. "value": ""
  3493. },
  3494. "parser": {
  3495. "type": "code",
  3496. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3497. },
  3498. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3499. "position": {
  3500. "type": "list<double>",
  3501. "value": [
  3502. "0;4.707219932797784,-31.622776601684897%",
  3503. "0;-16.735088935932595,-94.868329805051%"
  3504. ]
  3505. },
  3506. "orientation": {
  3507. "type": "double",
  3508. "value": "0;-108.43494882292268"
  3509. },
  3510. "scale": {
  3511. "type": "list<double>",
  3512. "value": [
  3513. 1,
  3514. 1
  3515. ]
  3516. },
  3517. "$linkDecoratorInfo": {
  3518. "type": "map<string,double>",
  3519. "value": {
  3520. "xratio": 1,
  3521. "yoffset": -4
  3522. }
  3523. }
  3524. }
  3525. },
  3526. "edges": []
  3527. }
  3528. },
  3529. "$asuri": {
  3530. "type": "string",
  3531. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/ExternalTransition/18.instance"
  3532. },
  3533. "$segments": {
  3534. "type": "map<string,list<string>>",
  3535. "value": {
  3536. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateIcon/11.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/ExternalTransitionLink/18.instance": "M948.0000000000002,520L940,534L957.4980468750001,534",
  3537. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/ExternalTransitionLink/18.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateIcon/11.instance": "M957.4980468750001,534L972,534L965.9999999999998,516"
  3538. }
  3539. },
  3540. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/ExternalTransitionLink"
  3541. },
  3542. "19": {
  3543. "link-style": {
  3544. "type": "map<string,string>",
  3545. "value": {
  3546. "stroke": "#000000",
  3547. "stroke-dasharray": "",
  3548. "stroke-opacity": 0,
  3549. "stroke-width": 0
  3550. }
  3551. },
  3552. "arrowHead": {
  3553. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  3554. "value": "custom"
  3555. },
  3556. "arrowTail": {
  3557. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  3558. "value": "arrow-black"
  3559. },
  3560. "typename": {
  3561. "type": "string",
  3562. "value": "statesLink"
  3563. },
  3564. "position": {
  3565. "type": "list<double>",
  3566. "value": [
  3567. 714.75,
  3568. 393.75
  3569. ]
  3570. },
  3571. "orientation": {
  3572. "type": "double",
  3573. "value": 0
  3574. },
  3575. "scale": {
  3576. "type": "list<double>",
  3577. "value": [
  3578. 1,
  3579. 1
  3580. ]
  3581. },
  3582. "mapper": {
  3583. "type": "code",
  3584. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3585. },
  3586. "parser": {
  3587. "type": "code",
  3588. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3589. },
  3590. "$contents": {
  3591. "type": "map<string,*>",
  3592. "value": {
  3593. "nodes": {},
  3594. "edges": []
  3595. }
  3596. },
  3597. "$asuri": {
  3598. "type": "string",
  3599. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/states/19.instance"
  3600. },
  3601. "$segments": {
  3602. "type": "map<string,list<string>>",
  3603. "value": {
  3604. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/AtomicDEVSIcon/9.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statesLink/19.instance": "M674,305L714.75,393.75",
  3605. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statesLink/19.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateIcon/10.instance": "M714.812563686239,393.88625833506035L755.4997429766516,482.499440225223"
  3606. }
  3607. },
  3608. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statesLink"
  3609. },
  3610. "20": {
  3611. "link-style": {
  3612. "type": "map<string,string>",
  3613. "value": {
  3614. "stroke": "#000000",
  3615. "stroke-dasharray": "",
  3616. "stroke-opacity": 0,
  3617. "stroke-width": 0
  3618. }
  3619. },
  3620. "arrowHead": {
  3621. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  3622. "value": "custom"
  3623. },
  3624. "arrowTail": {
  3625. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  3626. "value": "arrow-black"
  3627. },
  3628. "typename": {
  3629. "type": "string",
  3630. "value": "statesLink"
  3631. },
  3632. "position": {
  3633. "type": "list<double>",
  3634. "value": [
  3635. 870.5,
  3636. 393.75
  3637. ]
  3638. },
  3639. "orientation": {
  3640. "type": "double",
  3641. "value": 0
  3642. },
  3643. "scale": {
  3644. "type": "list<double>",
  3645. "value": [
  3646. 1,
  3647. 1
  3648. ]
  3649. },
  3650. "mapper": {
  3651. "type": "code",
  3652. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3653. },
  3654. "parser": {
  3655. "type": "code",
  3656. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3657. },
  3658. "$contents": {
  3659. "type": "map<string,*>",
  3660. "value": {
  3661. "nodes": {},
  3662. "edges": []
  3663. }
  3664. },
  3665. "$asuri": {
  3666. "type": "string",
  3667. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/states/20.instance"
  3668. },
  3669. "$segments": {
  3670. "type": "map<string,list<string>>",
  3671. "value": {
  3672. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/AtomicDEVSIcon/9.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statesLink/20.instance": "M674,305L870.5,393.75",
  3673. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statesLink/20.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateIcon/11.instance": "M870.5681970638291,393.7808014728489L1066.9994290472114,482.4997421269211"
  3674. }
  3675. },
  3676. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statesLink"
  3677. },
  3678. "21": {
  3679. "link-style": {
  3680. "type": "map<string,string>",
  3681. "value": {
  3682. "stroke": "#000000",
  3683. "stroke-dasharray": "- ",
  3684. "stroke-opacity": 1,
  3685. "stroke-width": 1
  3686. }
  3687. },
  3688. "arrowHead": {
  3689. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  3690. "value": "custom"
  3691. },
  3692. "arrowTail": {
  3693. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  3694. "value": "arrow-black"
  3695. },
  3696. "typename": {
  3697. "type": "string",
  3698. "value": "statedefLink"
  3699. },
  3700. "position": {
  3701. "type": "list<double>",
  3702. "value": [
  3703. 969,
  3704. 302.5
  3705. ]
  3706. },
  3707. "orientation": {
  3708. "type": "double",
  3709. "value": 0
  3710. },
  3711. "scale": {
  3712. "type": "list<double>",
  3713. "value": [
  3714. 1,
  3715. 1
  3716. ]
  3717. },
  3718. "mapper": {
  3719. "type": "code",
  3720. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3721. },
  3722. "parser": {
  3723. "type": "code",
  3724. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3725. },
  3726. "$contents": {
  3727. "type": "map<string,*>",
  3728. "value": {
  3729. "nodes": {
  3730. "271": {
  3731. "r": {
  3732. "type": "double",
  3733. "value": 5
  3734. },
  3735. "style": {
  3736. "type": "map<string,string>",
  3737. "value": {
  3738. "stroke": "#000000",
  3739. "fill": "#000000",
  3740. "opacity": 1,
  3741. "stroke-width": 1
  3742. }
  3743. },
  3744. "mapper": {
  3745. "type": "code",
  3746. "value": ""
  3747. },
  3748. "parser": {
  3749. "type": "code",
  3750. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3751. },
  3752. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3753. "position": {
  3754. "type": "list<double>",
  3755. "value": [
  3756. "0;-5.000000000000114,-4.601706385734539e-13%",
  3757. "0;-24.499388588088323,-100%"
  3758. ]
  3759. },
  3760. "orientation": {
  3761. "type": "double",
  3762. "value": "0;-90.00000000000027"
  3763. },
  3764. "scale": {
  3765. "type": "list<double>",
  3766. "value": [
  3767. 1,
  3768. 1
  3769. ]
  3770. },
  3771. "$linkDecoratorInfo": {
  3772. "type": "map<string,double>",
  3773. "value": {
  3774. "xratio": 1,
  3775. "yoffset": -5
  3776. }
  3777. }
  3778. }
  3779. },
  3780. "edges": []
  3781. }
  3782. },
  3783. "$asuri": {
  3784. "type": "string",
  3785. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/statedef/21.instance"
  3786. },
  3787. "$segments": {
  3788. "type": "map<string,list<string>>",
  3789. "value": {
  3790. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/AtomicDEVSIcon/9.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statedefLink/21.instance": "M969,327L969,302.5",
  3791. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statedefLink/21.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateDefinitionIcon/14.instance": "M968.9999999999999,302.4221876162819L968.9999999999999,278.0006114119117"
  3792. }
  3793. },
  3794. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statedefLink"
  3795. },
  3796. "22": {
  3797. "typename": {
  3798. "type": "string",
  3799. "value": "AtomicDEVSIcon"
  3800. },
  3801. "position": {
  3802. "type": "list<double>",
  3803. "value": [
  3804. 1265.232,
  3805. 300.1119
  3806. ]
  3807. },
  3808. "orientation": {
  3809. "type": "double",
  3810. "value": 0
  3811. },
  3812. "scale": {
  3813. "type": "list<double>",
  3814. "value": [
  3815. 1.2110720000000004,
  3816. 0.6983
  3817. ]
  3818. },
  3819. "mapper": {
  3820. "type": "code",
  3821. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'position': getAttr('position'), 'scale': getAttr('scale')})"
  3822. },
  3823. "parser": {
  3824. "type": "code",
  3825. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'position': getAttr('position'), 'scale': getAttr('scale')})"
  3826. },
  3827. "$contents": {
  3828. "type": "map<string,*>",
  3829. "value": {
  3830. "nodes": {
  3831. "14": {
  3832. "width": {
  3833. "type": "double",
  3834. "value": 250
  3835. },
  3836. "height": {
  3837. "type": "double",
  3838. "value": 250
  3839. },
  3840. "cornerRadius": {
  3841. "type": "double",
  3842. "value": 5
  3843. },
  3844. "style": {
  3845. "type": "map<string,string>",
  3846. "value": {
  3847. "stroke": "#000000",
  3848. "stroke-dasharray": "",
  3849. "fill": "#ffffff",
  3850. "fill-opacity": 0.75,
  3851. "font-size": "20px",
  3852. "stroke-width": 1,
  3853. "arrow-start": "none",
  3854. "arrow-end": "none"
  3855. }
  3856. },
  3857. "mapper": {
  3858. "type": "code",
  3859. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3860. },
  3861. "parser": {
  3862. "type": "code",
  3863. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3864. },
  3865. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  3866. "position": {
  3867. "type": "list<double>",
  3868. "value": [
  3869. 8,
  3870. 28
  3871. ]
  3872. },
  3873. "orientation": {
  3874. "type": "double",
  3875. "value": 0
  3876. },
  3877. "scale": {
  3878. "type": "list<double>",
  3879. "value": [
  3880. 1,
  3881. 1
  3882. ]
  3883. }
  3884. },
  3885. "16": {
  3886. "textContent": {
  3887. "type": "string",
  3888. "value": "Collector"
  3889. },
  3890. "style": {
  3891. "type": "map<string,string>",
  3892. "value": {
  3893. "stroke": "#ffffff",
  3894. "stroke-dasharray": "",
  3895. "fill": "#000000",
  3896. "fill-opacity": 1,
  3897. "font-size": "20px",
  3898. "stroke-width": 0,
  3899. "arrow-start": "none",
  3900. "arrow-end": "none"
  3901. }
  3902. },
  3903. "mapper": {
  3904. "type": "code",
  3905. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  3906. },
  3907. "parser": {
  3908. "type": "code",
  3909. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  3910. },
  3911. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3912. "position": {
  3913. "type": "list<double>",
  3914. "value": [
  3915. 8,
  3916. 7
  3917. ]
  3918. },
  3919. "orientation": {
  3920. "type": "double",
  3921. "value": 0
  3922. },
  3923. "scale": {
  3924. "type": "list<double>",
  3925. "value": [
  3926. 1,
  3927. 1
  3928. ]
  3929. }
  3930. }
  3931. },
  3932. "edges": []
  3933. }
  3934. },
  3935. "$asuri": {
  3936. "type": "string",
  3937. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/AtomicDEVS/22.instance"
  3938. },
  3939. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/AtomicDEVSIcon"
  3940. },
  3941. "23": {
  3942. "typename": {
  3943. "type": "string",
  3944. "value": "StateDefinitionIcon"
  3945. },
  3946. "position": {
  3947. "type": "list<double>",
  3948. "value": [
  3949. 1347,
  3950. 152
  3951. ]
  3952. },
  3953. "orientation": {
  3954. "type": "double",
  3955. "value": 0
  3956. },
  3957. "scale": {
  3958. "type": "list<double>",
  3959. "value": [
  3960. 1,
  3961. 1
  3962. ]
  3963. },
  3964. "mapper": {
  3965. "type": "code",
  3966. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3967. },
  3968. "parser": {
  3969. "type": "code",
  3970. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3971. },
  3972. "$contents": {
  3973. "type": "map<string,*>",
  3974. "value": {
  3975. "nodes": {
  3976. "82": {
  3977. "width": {
  3978. "type": "double",
  3979. "value": 200
  3980. },
  3981. "height": {
  3982. "type": "double",
  3983. "value": 125
  3984. },
  3985. "cornerRadius": {
  3986. "type": "double",
  3987. "value": 10
  3988. },
  3989. "style": {
  3990. "type": "map<string,string>",
  3991. "value": {
  3992. "stroke": "#000000",
  3993. "stroke-dasharray": "",
  3994. "fill": "orange",
  3995. "fill-opacity": 0.75,
  3996. "stroke-width": 1
  3997. }
  3998. },
  3999. "mapper": {
  4000. "type": "code",
  4001. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4002. },
  4003. "parser": {
  4004. "type": "code",
  4005. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4006. },
  4007. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  4008. "position": {
  4009. "type": "list<double>",
  4010. "value": [
  4011. 4,
  4012. 3
  4013. ]
  4014. },
  4015. "orientation": {
  4016. "type": "double",
  4017. "value": 0
  4018. },
  4019. "scale": {
  4020. "type": "list<double>",
  4021. "value": [
  4022. 1,
  4023. 1
  4024. ]
  4025. }
  4026. },
  4027. "85": {
  4028. "segments": {
  4029. "type": "string",
  4030. "value": "m0,0l197,0"
  4031. },
  4032. "style": {
  4033. "type": "map<string,string>",
  4034. "value": {
  4035. "stroke": "#000000",
  4036. "stroke-dasharray": "",
  4037. "fill": "#ffffff",
  4038. "fill-opacity": 0.75,
  4039. "font-size": "20px",
  4040. "stroke-width": 1,
  4041. "arrow-start": "none",
  4042. "arrow-end": "none"
  4043. }
  4044. },
  4045. "mapper": {
  4046. "type": "code",
  4047. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4048. },
  4049. "parser": {
  4050. "type": "code",
  4051. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4052. },
  4053. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4054. "position": {
  4055. "type": "list<double>",
  4056. "value": [
  4057. 6,
  4058. 36
  4059. ]
  4060. },
  4061. "orientation": {
  4062. "type": "double",
  4063. "value": 0
  4064. },
  4065. "scale": {
  4066. "type": "list<double>",
  4067. "value": [
  4068. 1,
  4069. 1
  4070. ]
  4071. }
  4072. },
  4073. "86": {
  4074. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4075. "position": {
  4076. "type": "list<double>",
  4077. "value": [
  4078. 53.75,
  4079. 20
  4080. ]
  4081. },
  4082. "orientation": {
  4083. "type": "double",
  4084. "value": 0
  4085. },
  4086. "scale": {
  4087. "type": "list<double>",
  4088. "value": [
  4089. 1,
  4090. 1
  4091. ]
  4092. },
  4093. "link-style": {
  4094. "type": "map<string,string>",
  4095. "value": {
  4096. "stroke": "#00ffff",
  4097. "stroke-dasharray": "",
  4098. "stroke-opacity": 0.1,
  4099. "stroke-width": 1
  4100. }
  4101. }
  4102. },
  4103. "90": {
  4104. "textContent": {
  4105. "type": "string",
  4106. "value": "+ nr_of_tasks : int"
  4107. },
  4108. "style": {
  4109. "type": "map<string,string>",
  4110. "value": {
  4111. "stroke": "#ffffff",
  4112. "stroke-dasharray": "",
  4113. "fill": "#000000",
  4114. "fill-opacity": 1,
  4115. "font-size": "12px",
  4116. "stroke-width": 0,
  4117. "arrow-start": "none",
  4118. "arrow-end": "none"
  4119. }
  4120. },
  4121. "mapper": {
  4122. "type": "code",
  4123. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar filenames = getAttr('attributes').map(\n function(attr)\n {\n var s = '+ '+attr['name'] + ' : ' + attr['type'];\n if (attr['default'])\n s += ' = ' + attr['default'];\n return s;\n });\n\n({'textContent': filenames.join('\\n')})"
  4124. },
  4125. "parser": {
  4126. "type": "code",
  4127. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4128. },
  4129. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  4130. "position": {
  4131. "type": "list<double>",
  4132. "value": [
  4133. 9,
  4134. 41
  4135. ]
  4136. },
  4137. "orientation": {
  4138. "type": "double",
  4139. "value": 0
  4140. },
  4141. "scale": {
  4142. "type": "list<double>",
  4143. "value": [
  4144. 1,
  4145. 1
  4146. ]
  4147. }
  4148. },
  4149. "92": {
  4150. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4151. "position": {
  4152. "type": "list<double>",
  4153. "value": [
  4154. 18.1796875,
  4155. 26
  4156. ]
  4157. },
  4158. "orientation": {
  4159. "type": "double",
  4160. "value": 0
  4161. },
  4162. "scale": {
  4163. "type": "list<double>",
  4164. "value": [
  4165. 1,
  4166. 1
  4167. ]
  4168. },
  4169. "link-style": {
  4170. "type": "map<string,string>",
  4171. "value": {
  4172. "stroke": "#00ffff",
  4173. "stroke-dasharray": "",
  4174. "stroke-opacity": 0.1,
  4175. "stroke-width": 1
  4176. }
  4177. }
  4178. },
  4179. "93": {
  4180. "textContent": {
  4181. "type": "string",
  4182. "value": "CollectorState"
  4183. },
  4184. "style": {
  4185. "type": "map<string,string>",
  4186. "value": {
  4187. "stroke": "#ffffff",
  4188. "stroke-dasharray": "",
  4189. "fill": "#000000",
  4190. "fill-opacity": 1,
  4191. "font-size": "20px",
  4192. "stroke-width": 0,
  4193. "arrow-start": "none",
  4194. "arrow-end": "none"
  4195. }
  4196. },
  4197. "mapper": {
  4198. "type": "code",
  4199. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  4200. },
  4201. "parser": {
  4202. "type": "code",
  4203. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  4204. },
  4205. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  4206. "position": {
  4207. "type": "list<double>",
  4208. "value": [
  4209. 8,
  4210. 9
  4211. ]
  4212. },
  4213. "orientation": {
  4214. "type": "double",
  4215. "value": 0
  4216. },
  4217. "scale": {
  4218. "type": "list<double>",
  4219. "value": [
  4220. 1,
  4221. 1
  4222. ]
  4223. }
  4224. },
  4225. "94": {
  4226. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4227. "position": {
  4228. "type": "list<double>",
  4229. "value": [
  4230. 25.607941766118074,
  4231. 12.053332982167333
  4232. ]
  4233. },
  4234. "orientation": {
  4235. "type": "double",
  4236. "value": 0
  4237. },
  4238. "scale": {
  4239. "type": "list<double>",
  4240. "value": [
  4241. 1,
  4242. 1
  4243. ]
  4244. },
  4245. "link-style": {
  4246. "type": "map<string,string>",
  4247. "value": {
  4248. "stroke": "#00ffff",
  4249. "stroke-dasharray": "",
  4250. "stroke-opacity": 0.1,
  4251. "stroke-width": 1
  4252. }
  4253. }
  4254. }
  4255. },
  4256. "edges": [
  4257. {
  4258. "src": "82",
  4259. "dest": "86"
  4260. },
  4261. {
  4262. "src": "86",
  4263. "dest": "85"
  4264. },
  4265. {
  4266. "src": "82",
  4267. "dest": "92"
  4268. },
  4269. {
  4270. "src": "92",
  4271. "dest": "90"
  4272. },
  4273. {
  4274. "src": "82",
  4275. "dest": "94"
  4276. },
  4277. {
  4278. "src": "94",
  4279. "dest": "93"
  4280. }
  4281. ]
  4282. }
  4283. },
  4284. "$asuri": {
  4285. "type": "string",
  4286. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/StateDefinition/23.instance"
  4287. },
  4288. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateDefinitionIcon"
  4289. },
  4290. "24": {
  4291. "typename": {
  4292. "type": "string",
  4293. "value": "StateIcon"
  4294. },
  4295. "position": {
  4296. "type": "list<double>",
  4297. "value": [
  4298. 1284,
  4299. 345
  4300. ]
  4301. },
  4302. "orientation": {
  4303. "type": "double",
  4304. "value": 0
  4305. },
  4306. "scale": {
  4307. "type": "list<double>",
  4308. "value": [
  4309. 1,
  4310. 1
  4311. ]
  4312. },
  4313. "mapper": {
  4314. "type": "code",
  4315. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'position': getAttr('position')})"
  4316. },
  4317. "parser": {
  4318. "type": "code",
  4319. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'position': getAttr('position')})"
  4320. },
  4321. "$contents": {
  4322. "type": "map<string,*>",
  4323. "value": {
  4324. "nodes": {
  4325. "34": {
  4326. "r": {
  4327. "type": "double",
  4328. "value": 25
  4329. },
  4330. "style": {
  4331. "type": "map<string,string>",
  4332. "value": {
  4333. "stroke": "#000000",
  4334. "stroke-dasharray": "",
  4335. "fill": "#ffffff",
  4336. "fill-opacity": 0.75,
  4337. "font-size": "20px",
  4338. "stroke-width": 2,
  4339. "arrow-start": "none",
  4340. "arrow-end": "none"
  4341. }
  4342. },
  4343. "mapper": {
  4344. "type": "code",
  4345. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar style = {\n \"stroke\": \"#000000\",\n \"stroke-dasharray\": \"\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"stroke-width\": 1,\n \"arrow-start\": \"none\",\n \"arrow-end\": \"none\"\n};\nif (getAttr('initial')) {\n style[\"stroke-width\"] = 2;\n}\n({'style': style})"
  4346. },
  4347. "parser": {
  4348. "type": "code",
  4349. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4350. },
  4351. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4352. "position": {
  4353. "type": "list<double>",
  4354. "value": [
  4355. 4,
  4356. 21
  4357. ]
  4358. },
  4359. "orientation": {
  4360. "type": "double",
  4361. "value": 0
  4362. },
  4363. "scale": {
  4364. "type": "list<double>",
  4365. "value": [
  4366. 1,
  4367. 1
  4368. ]
  4369. }
  4370. },
  4371. "37": {
  4372. "textContent": {
  4373. "type": "string",
  4374. "value": "collecting"
  4375. },
  4376. "style": {
  4377. "type": "map<string,string>",
  4378. "value": {
  4379. "stroke": "#000000",
  4380. "stroke-dasharray": "",
  4381. "fill": "green",
  4382. "fill-opacity": 1,
  4383. "font-size": "12px",
  4384. "font-weight": "bold",
  4385. "stroke-width": 0,
  4386. "arrow-start": "none",
  4387. "arrow-end": "none"
  4388. }
  4389. },
  4390. "mapper": {
  4391. "type": "code",
  4392. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  4393. },
  4394. "parser": {
  4395. "type": "code",
  4396. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  4397. },
  4398. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  4399. "position": {
  4400. "type": "list<double>",
  4401. "value": [
  4402. 5,
  4403. 6
  4404. ]
  4405. },
  4406. "orientation": {
  4407. "type": "double",
  4408. "value": 0
  4409. },
  4410. "scale": {
  4411. "type": "list<double>",
  4412. "value": [
  4413. 1,
  4414. 1
  4415. ]
  4416. }
  4417. },
  4418. "40": {
  4419. "textContent": {
  4420. "type": "string",
  4421. "value": "return INFINITY"
  4422. },
  4423. "style": {
  4424. "type": "map<string,string>",
  4425. "value": {
  4426. "stroke": "#ffffff",
  4427. "stroke-dasharray": "",
  4428. "fill": "#000000",
  4429. "fill-opacity": 1,
  4430. "font-size": "12px",
  4431. "stroke-width": 0,
  4432. "arrow-start": "none",
  4433. "arrow-end": "none"
  4434. }
  4435. },
  4436. "mapper": {
  4437. "type": "code",
  4438. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('time_advance').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': textContent })"
  4439. },
  4440. "parser": {
  4441. "type": "code",
  4442. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4443. },
  4444. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  4445. "position": {
  4446. "type": "list<double>",
  4447. "value": [
  4448. 79,
  4449. 57
  4450. ]
  4451. },
  4452. "orientation": {
  4453. "type": "double",
  4454. "value": 0
  4455. },
  4456. "scale": {
  4457. "type": "list<double>",
  4458. "value": [
  4459. 1,
  4460. 1
  4461. ]
  4462. }
  4463. },
  4464. "42": {
  4465. "src": {
  4466. "type": "string",
  4467. "value": "/Formalisms/ParallelDEVS/icons/clock.png"
  4468. },
  4469. "width": {
  4470. "type": "double",
  4471. "value": 20
  4472. },
  4473. "height": {
  4474. "type": "double",
  4475. "value": 20
  4476. },
  4477. "style": {
  4478. "type": "map<string,string>",
  4479. "value": {
  4480. "stroke": "#000000",
  4481. "stroke-dasharray": "",
  4482. "fill": "#ffffff",
  4483. "fill-opacity": 0.75,
  4484. "font-size": "20px",
  4485. "stroke-width": 1,
  4486. "arrow-start": "none",
  4487. "arrow-end": "none"
  4488. }
  4489. },
  4490. "mapper": {
  4491. "type": "code",
  4492. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4493. },
  4494. "parser": {
  4495. "type": "code",
  4496. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4497. },
  4498. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  4499. "position": {
  4500. "type": "list<double>",
  4501. "value": [
  4502. 56,
  4503. 53
  4504. ]
  4505. },
  4506. "orientation": {
  4507. "type": "double",
  4508. "value": 0
  4509. },
  4510. "scale": {
  4511. "type": "list<double>",
  4512. "value": [
  4513. 1,
  4514. 1
  4515. ]
  4516. }
  4517. },
  4518. "44": {
  4519. "src": {
  4520. "type": "string",
  4521. "value": "/Formalisms/ParallelDEVS/icons/arrow_up.png"
  4522. },
  4523. "width": {
  4524. "type": "double",
  4525. "value": 0
  4526. },
  4527. "height": {
  4528. "type": "double",
  4529. "value": 0
  4530. },
  4531. "style": {
  4532. "type": "map<string,string>",
  4533. "value": {
  4534. "stroke": "#000000",
  4535. "stroke-dasharray": "",
  4536. "fill": "#ffffff",
  4537. "fill-opacity": 1,
  4538. "font-size": "20px",
  4539. "stroke-width": 1,
  4540. "arrow-start": "none",
  4541. "arrow-end": "none"
  4542. }
  4543. },
  4544. "mapper": {
  4545. "type": "code",
  4546. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar width = 20,\n height = 20;\nif (getAttr('output') == \"\") {\n width = 0;\n height = 0;\n}\n({'width': width, 'height': height})"
  4547. },
  4548. "parser": {
  4549. "type": "code",
  4550. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4551. },
  4552. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  4553. "position": {
  4554. "type": "list<double>",
  4555. "value": [
  4556. 55,
  4557. 18
  4558. ]
  4559. },
  4560. "orientation": {
  4561. "type": "double",
  4562. "value": 0
  4563. },
  4564. "scale": {
  4565. "type": "list<double>",
  4566. "value": [
  4567. 1,
  4568. 1
  4569. ]
  4570. }
  4571. },
  4572. "46": {
  4573. "textContent": {
  4574. "type": "string",
  4575. "value": ""
  4576. },
  4577. "style": {
  4578. "type": "map<string,string>",
  4579. "value": {
  4580. "stroke": "#ffffff",
  4581. "stroke-dasharray": "",
  4582. "fill": "#000000",
  4583. "fill-opacity": 1,
  4584. "font-size": "12px",
  4585. "stroke-width": 0,
  4586. "arrow-start": "none",
  4587. "arrow-end": "none"
  4588. }
  4589. },
  4590. "mapper": {
  4591. "type": "code",
  4592. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('output').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': textContent })"
  4593. },
  4594. "parser": {
  4595. "type": "code",
  4596. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4597. },
  4598. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  4599. "position": {
  4600. "type": "list<double>",
  4601. "value": [
  4602. 77,
  4603. 23
  4604. ]
  4605. },
  4606. "orientation": {
  4607. "type": "double",
  4608. "value": 0
  4609. },
  4610. "scale": {
  4611. "type": "list<double>",
  4612. "value": [
  4613. 1,
  4614. 1
  4615. ]
  4616. }
  4617. }
  4618. },
  4619. "edges": []
  4620. }
  4621. },
  4622. "$asuri": {
  4623. "type": "string",
  4624. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/State/24.instance"
  4625. },
  4626. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateIcon"
  4627. },
  4628. "26": {
  4629. "link-style": {
  4630. "type": "map<string,string>",
  4631. "value": {
  4632. "stroke": "#000000",
  4633. "stroke-dasharray": "- ",
  4634. "stroke-opacity": 1,
  4635. "stroke-width": 1
  4636. }
  4637. },
  4638. "arrowHead": {
  4639. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  4640. "value": "custom"
  4641. },
  4642. "arrowTail": {
  4643. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  4644. "value": "arrow-black"
  4645. },
  4646. "typename": {
  4647. "type": "string",
  4648. "value": "statedefLink"
  4649. },
  4650. "position": {
  4651. "type": "list<double>",
  4652. "value": [
  4653. 1452,
  4654. 303.5
  4655. ]
  4656. },
  4657. "orientation": {
  4658. "type": "double",
  4659. "value": 0
  4660. },
  4661. "scale": {
  4662. "type": "list<double>",
  4663. "value": [
  4664. 1,
  4665. 1
  4666. ]
  4667. },
  4668. "mapper": {
  4669. "type": "code",
  4670. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4671. },
  4672. "parser": {
  4673. "type": "code",
  4674. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4675. },
  4676. "$contents": {
  4677. "type": "map<string,*>",
  4678. "value": {
  4679. "nodes": {
  4680. "271": {
  4681. "r": {
  4682. "type": "double",
  4683. "value": 5
  4684. },
  4685. "style": {
  4686. "type": "map<string,string>",
  4687. "value": {
  4688. "stroke": "#000000",
  4689. "fill": "#000000",
  4690. "opacity": 1,
  4691. "stroke-width": 1
  4692. }
  4693. },
  4694. "mapper": {
  4695. "type": "code",
  4696. "value": ""
  4697. },
  4698. "parser": {
  4699. "type": "code",
  4700. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4701. },
  4702. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4703. "position": {
  4704. "type": "list<double>",
  4705. "value": [
  4706. "0;-5,6.123031769111886e-15%",
  4707. "0;-23.49936260751474,-100%"
  4708. ]
  4709. },
  4710. "orientation": {
  4711. "type": "double",
  4712. "value": "0;-90"
  4713. },
  4714. "scale": {
  4715. "type": "list<double>",
  4716. "value": [
  4717. 1,
  4718. 1
  4719. ]
  4720. },
  4721. "$linkDecoratorInfo": {
  4722. "type": "map<string,double>",
  4723. "value": {
  4724. "xratio": 1,
  4725. "yoffset": -5
  4726. }
  4727. }
  4728. }
  4729. },
  4730. "edges": []
  4731. }
  4732. },
  4733. "$asuri": {
  4734. "type": "string",
  4735. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/statedef/26.instance"
  4736. },
  4737. "$segments": {
  4738. "type": "map<string,list<string>>",
  4739. "value": {
  4740. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/AtomicDEVSIcon/22.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statedefLink/26.instance": "M1452,320.3542L1452,303.5",
  4741. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statedefLink/26.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateDefinitionIcon/23.instance": "M1452,303.4220653443769L1452,280.00063739248526"
  4742. }
  4743. },
  4744. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statedefLink"
  4745. },
  4746. "27": {
  4747. "link-style": {
  4748. "type": "map<string,string>",
  4749. "value": {
  4750. "stroke": "red",
  4751. "stroke-dasharray": "",
  4752. "stroke-opacity": 1,
  4753. "stroke-width": 2
  4754. }
  4755. },
  4756. "arrowHead": {
  4757. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  4758. "value": "custom"
  4759. },
  4760. "arrowTail": {
  4761. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  4762. "value": "arrow-black"
  4763. },
  4764. "typename": {
  4765. "type": "string",
  4766. "value": "ExternalTransitionLink"
  4767. },
  4768. "position": {
  4769. "type": "list<double>",
  4770. "value": [
  4771. 1313,
  4772. 449
  4773. ]
  4774. },
  4775. "orientation": {
  4776. "type": "double",
  4777. "value": 0
  4778. },
  4779. "scale": {
  4780. "type": "list<double>",
  4781. "value": [
  4782. 1,
  4783. 1
  4784. ]
  4785. },
  4786. "mapper": {
  4787. "type": "code",
  4788. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4789. },
  4790. "parser": {
  4791. "type": "code",
  4792. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4793. },
  4794. "$contents": {
  4795. "type": "map<string,*>",
  4796. "value": {
  4797. "nodes": {
  4798. "73": {
  4799. "textContent": {
  4800. "type": "string",
  4801. "value": "[]"
  4802. },
  4803. "style": {
  4804. "type": "map<string,string>",
  4805. "value": {
  4806. "stroke": "#ffffff",
  4807. "stroke-dasharray": "",
  4808. "fill": "#000000",
  4809. "fill-opacity": 1,
  4810. "font-size": "12px",
  4811. "stroke-width": 0,
  4812. "arrow-start": "none",
  4813. "arrow-end": "none"
  4814. }
  4815. },
  4816. "mapper": {
  4817. "type": "code",
  4818. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('condition').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': '[' + textContent + ']'})"
  4819. },
  4820. "parser": {
  4821. "type": "code",
  4822. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4823. },
  4824. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  4825. "position": {
  4826. "type": "list<double>",
  4827. "value": [
  4828. "0;-10.141412062883546,0%",
  4829. "0;-33.5,0%"
  4830. ]
  4831. },
  4832. "orientation": {
  4833. "type": "double",
  4834. "value": "0;0"
  4835. },
  4836. "scale": {
  4837. "type": "list<double>",
  4838. "value": [
  4839. 1,
  4840. 1
  4841. ]
  4842. },
  4843. "$linkDecoratorInfo": {
  4844. "type": "map<string,double>",
  4845. "value": {
  4846. "xratio": 0.4110429447852761,
  4847. "yoffset": -33.5
  4848. }
  4849. }
  4850. },
  4851. "75": {
  4852. "textContent": {
  4853. "type": "string",
  4854. "value": "return {\"nr_of_tasks\": self.state.nr_of_tasks + 1}"
  4855. },
  4856. "style": {
  4857. "type": "map<string,string>",
  4858. "value": {
  4859. "stroke": "#ffffff",
  4860. "stroke-dasharray": "",
  4861. "fill": "#000000",
  4862. "fill-opacity": 1,
  4863. "font-size": "12px",
  4864. "stroke-width": 0,
  4865. "arrow-start": "none",
  4866. "arrow-end": "none"
  4867. }
  4868. },
  4869. "mapper": {
  4870. "type": "code",
  4871. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('action').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': textContent})"
  4872. },
  4873. "parser": {
  4874. "type": "code",
  4875. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4876. },
  4877. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  4878. "position": {
  4879. "type": "list<double>",
  4880. "value": [
  4881. "0;-8.742648243865005,0%",
  4882. "0;2.5,0%"
  4883. ]
  4884. },
  4885. "orientation": {
  4886. "type": "double",
  4887. "value": "0;0"
  4888. },
  4889. "scale": {
  4890. "type": "list<double>",
  4891. "value": [
  4892. 1,
  4893. 1
  4894. ]
  4895. },
  4896. "$linkDecoratorInfo": {
  4897. "type": "map<string,double>",
  4898. "value": {
  4899. "xratio": 0.4233128834355828,
  4900. "yoffset": 2.5
  4901. }
  4902. }
  4903. },
  4904. "267": {
  4905. "segments": {
  4906. "type": "string",
  4907. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  4908. },
  4909. "style": {
  4910. "type": "map<string,string>",
  4911. "value": {
  4912. "stroke": "#000000",
  4913. "fill": "#000000",
  4914. "opacity": 1,
  4915. "stroke-width": 1
  4916. }
  4917. },
  4918. "mapper": {
  4919. "type": "code",
  4920. "value": ""
  4921. },
  4922. "parser": {
  4923. "type": "code",
  4924. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4925. },
  4926. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4927. "position": {
  4928. "type": "list<double>",
  4929. "value": [
  4930. "0;13,6.123031769111886e-15%",
  4931. "0;-39.99925124999993,-100%"
  4932. ]
  4933. },
  4934. "orientation": {
  4935. "type": "double",
  4936. "value": "0;-90"
  4937. },
  4938. "scale": {
  4939. "type": "list<double>",
  4940. "value": [
  4941. 1,
  4942. 1
  4943. ]
  4944. },
  4945. "$linkDecoratorInfo": {
  4946. "type": "map<string,double>",
  4947. "value": {
  4948. "xratio": 1,
  4949. "yoffset": -4
  4950. }
  4951. }
  4952. }
  4953. },
  4954. "edges": []
  4955. }
  4956. },
  4957. "$asuri": {
  4958. "type": "string",
  4959. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/ExternalTransition/27.instance"
  4960. },
  4961. "$segments": {
  4962. "type": "map<string,list<string>>",
  4963. "value": {
  4964. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateIcon/24.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/ExternalTransitionLink/27.instance": "M1296,409L1296,449L1313,449",
  4965. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/ExternalTransitionLink/27.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateIcon/24.instance": "M1313,449L1330,449L1330,409.00074875000007"
  4966. }
  4967. },
  4968. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/ExternalTransitionLink"
  4969. },
  4970. "28": {
  4971. "link-style": {
  4972. "type": "map<string,string>",
  4973. "value": {
  4974. "stroke": "#000000",
  4975. "stroke-dasharray": "",
  4976. "stroke-opacity": 0,
  4977. "stroke-width": 0
  4978. }
  4979. },
  4980. "arrowHead": {
  4981. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  4982. "value": "custom"
  4983. },
  4984. "arrowTail": {
  4985. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  4986. "value": "arrow-black"
  4987. },
  4988. "typename": {
  4989. "type": "string",
  4990. "value": "statesLink"
  4991. },
  4992. "position": {
  4993. "type": "list<double>",
  4994. "value": [
  4995. 1371.25,
  4996. 338.75
  4997. ]
  4998. },
  4999. "orientation": {
  5000. "type": "double",
  5001. "value": 0
  5002. },
  5003. "scale": {
  5004. "type": "list<double>",
  5005. "value": [
  5006. 1,
  5007. 1
  5008. ]
  5009. },
  5010. "mapper": {
  5011. "type": "code",
  5012. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  5013. },
  5014. "parser": {
  5015. "type": "code",
  5016. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5017. },
  5018. "$contents": {
  5019. "type": "map<string,*>",
  5020. "value": {
  5021. "nodes": {},
  5022. "edges": []
  5023. }
  5024. },
  5025. "$asuri": {
  5026. "type": "string",
  5027. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/states/28.instance"
  5028. },
  5029. "$segments": {
  5030. "type": "map<string,list<string>>",
  5031. "value": {
  5032. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/AtomicDEVSIcon/22.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statesLink/28.instance": "M1326,305L1371.25,338.75",
  5033. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statesLink/28.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/StateIcon/24.instance": "M1371.3104944434845,338.79512016502997L1363.4997836906946,378.4998386643301"
  5034. }
  5035. },
  5036. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/statesLink"
  5037. },
  5038. "29": {
  5039. "typename": {
  5040. "type": "string",
  5041. "value": "CoupledDEVSIcon"
  5042. },
  5043. "position": {
  5044. "type": "list<double>",
  5045. "value": [
  5046. 510.1608,
  5047. 630.5834
  5048. ]
  5049. },
  5050. "orientation": {
  5051. "type": "double",
  5052. "value": 0
  5053. },
  5054. "scale": {
  5055. "type": "list<double>",
  5056. "value": [
  5057. 1.9799,
  5058. 0.7738
  5059. ]
  5060. },
  5061. "mapper": {
  5062. "type": "code",
  5063. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'position': getAttr('position'), 'scale': getAttr('scale')})"
  5064. },
  5065. "parser": {
  5066. "type": "code",
  5067. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'position': getAttr('position'), 'scale': getAttr('scale')})"
  5068. },
  5069. "$contents": {
  5070. "type": "map<string,*>",
  5071. "value": {
  5072. "nodes": {
  5073. "30": {
  5074. "width": {
  5075. "type": "double",
  5076. "value": 250
  5077. },
  5078. "height": {
  5079. "type": "double",
  5080. "value": 250
  5081. },
  5082. "cornerRadius": {
  5083. "type": "double",
  5084. "value": 5
  5085. },
  5086. "style": {
  5087. "type": "map<string,string>",
  5088. "value": {
  5089. "stroke": "#000000",
  5090. "stroke-dasharray": "",
  5091. "fill": "#000000",
  5092. "fill-opacity": 0.07,
  5093. "font-size": "20px",
  5094. "stroke-width": 1,
  5095. "arrow-start": "none",
  5096. "arrow-end": "none"
  5097. }
  5098. },
  5099. "mapper": {
  5100. "type": "code",
  5101. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  5102. },
  5103. "parser": {
  5104. "type": "code",
  5105. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5106. },
  5107. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  5108. "position": {
  5109. "type": "list<double>",
  5110. "value": [
  5111. 8,
  5112. 28
  5113. ]
  5114. },
  5115. "orientation": {
  5116. "type": "double",
  5117. "value": 0
  5118. },
  5119. "scale": {
  5120. "type": "list<double>",
  5121. "value": [
  5122. 1,
  5123. 1
  5124. ]
  5125. }
  5126. },
  5127. "31": {
  5128. "textContent": {
  5129. "type": "string",
  5130. "value": "Root"
  5131. },
  5132. "style": {
  5133. "type": "map<string,string>",
  5134. "value": {
  5135. "stroke": "#ffffff",
  5136. "stroke-dasharray": "",
  5137. "fill": "#000000",
  5138. "fill-opacity": 1,
  5139. "font-size": "20px",
  5140. "stroke-width": 0,
  5141. "arrow-start": "none",
  5142. "arrow-end": "none"
  5143. }
  5144. },
  5145. "mapper": {
  5146. "type": "code",
  5147. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  5148. },
  5149. "parser": {
  5150. "type": "code",
  5151. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  5152. },
  5153. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  5154. "position": {
  5155. "type": "list<double>",
  5156. "value": [
  5157. 8,
  5158. 7
  5159. ]
  5160. },
  5161. "orientation": {
  5162. "type": "double",
  5163. "value": 0
  5164. },
  5165. "scale": {
  5166. "type": "list<double>",
  5167. "value": [
  5168. 1,
  5169. 1
  5170. ]
  5171. }
  5172. }
  5173. },
  5174. "edges": []
  5175. }
  5176. },
  5177. "$asuri": {
  5178. "type": "string",
  5179. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/CoupledDEVS/29.instance"
  5180. },
  5181. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/CoupledDEVSIcon"
  5182. },
  5183. "30": {
  5184. "typename": {
  5185. "type": "string",
  5186. "value": "DevsInstanceIcon"
  5187. },
  5188. "position": {
  5189. "type": "list<double>",
  5190. "value": [
  5191. 544,
  5192. 701
  5193. ]
  5194. },
  5195. "orientation": {
  5196. "type": "double",
  5197. "value": 0
  5198. },
  5199. "scale": {
  5200. "type": "list<double>",
  5201. "value": [
  5202. 1,
  5203. 1
  5204. ]
  5205. },
  5206. "mapper": {
  5207. "type": "code",
  5208. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'position': getAttr('position'), 'scale': getAttr('scale')})"
  5209. },
  5210. "parser": {
  5211. "type": "code",
  5212. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'position': getAttr('position'), 'scale': getAttr('scale')})"
  5213. },
  5214. "$contents": {
  5215. "type": "map<string,*>",
  5216. "value": {
  5217. "nodes": {
  5218. "104": {
  5219. "textContent": {
  5220. "type": "string",
  5221. "value": "g"
  5222. },
  5223. "style": {
  5224. "type": "map<string,string>",
  5225. "value": {
  5226. "stroke": "#ffffff",
  5227. "stroke-dasharray": "",
  5228. "fill": "#000000",
  5229. "fill-opacity": 1,
  5230. "font-size": "12px",
  5231. "stroke-width": 0,
  5232. "arrow-start": "none",
  5233. "arrow-end": "none"
  5234. }
  5235. },
  5236. "mapper": {
  5237. "type": "code",
  5238. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  5239. },
  5240. "parser": {
  5241. "type": "code",
  5242. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  5243. },
  5244. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  5245. "position": {
  5246. "type": "list<double>",
  5247. "value": [
  5248. 15,
  5249. 26
  5250. ]
  5251. },
  5252. "orientation": {
  5253. "type": "double",
  5254. "value": 0
  5255. },
  5256. "scale": {
  5257. "type": "list<double>",
  5258. "value": [
  5259. 1,
  5260. 1
  5261. ]
  5262. }
  5263. },
  5264. "110": {
  5265. "textContent": {
  5266. "type": "string",
  5267. "value": ":Generator"
  5268. },
  5269. "style": {
  5270. "type": "map<string,string>",
  5271. "value": {
  5272. "stroke": "#ffffff",
  5273. "stroke-dasharray": "",
  5274. "fill": "#000000",
  5275. "fill-opacity": 1,
  5276. "font-size": "12px",
  5277. "stroke-width": 0,
  5278. "arrow-start": "none",
  5279. "arrow-end": "none"
  5280. }
  5281. },
  5282. "mapper": {
  5283. "type": "code",
  5284. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': ':' + getAttr('devs_type')})"
  5285. },
  5286. "parser": {
  5287. "type": "code",
  5288. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5289. },
  5290. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  5291. "position": {
  5292. "type": "list<double>",
  5293. "value": [
  5294. 33,
  5295. 46
  5296. ]
  5297. },
  5298. "orientation": {
  5299. "type": "double",
  5300. "value": 0
  5301. },
  5302. "scale": {
  5303. "type": "list<double>",
  5304. "value": [
  5305. 1,
  5306. 1
  5307. ]
  5308. }
  5309. },
  5310. "117": {
  5311. "width": {
  5312. "type": "double",
  5313. "value": 100
  5314. },
  5315. "height": {
  5316. "type": "double",
  5317. "value": 100
  5318. },
  5319. "cornerRadius": {
  5320. "type": "double",
  5321. "value": 5
  5322. },
  5323. "style": {
  5324. "type": "map<string,string>",
  5325. "value": {
  5326. "stroke": "#000000",
  5327. "stroke-dasharray": "",
  5328. "fill": "#000000",
  5329. "fill-opacity": 0.15,
  5330. "font-size": "20px",
  5331. "stroke-width": 1,
  5332. "arrow-start": "none",
  5333. "arrow-end": "none"
  5334. }
  5335. },
  5336. "mapper": {
  5337. "type": "code",
  5338. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  5339. },
  5340. "parser": {
  5341. "type": "code",
  5342. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5343. },
  5344. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  5345. "position": {
  5346. "type": "list<double>",
  5347. "value": [
  5348. 7,
  5349. 4
  5350. ]
  5351. },
  5352. "orientation": {
  5353. "type": "double",
  5354. "value": 0
  5355. },
  5356. "scale": {
  5357. "type": "list<double>",
  5358. "value": [
  5359. 1,
  5360. 1
  5361. ]
  5362. }
  5363. },
  5364. "119": {
  5365. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5366. "position": {
  5367. "type": "list<double>",
  5368. "value": [
  5369. 22.791684421312993,
  5370. 19.099999244142055
  5371. ]
  5372. },
  5373. "orientation": {
  5374. "type": "double",
  5375. "value": 0
  5376. },
  5377. "scale": {
  5378. "type": "list<double>",
  5379. "value": [
  5380. 1,
  5381. 1
  5382. ]
  5383. },
  5384. "link-style": {
  5385. "type": "map<string,string>",
  5386. "value": {
  5387. "stroke": "#00ffff",
  5388. "stroke-dasharray": "",
  5389. "stroke-opacity": 0.1,
  5390. "stroke-width": 1
  5391. }
  5392. }
  5393. },
  5394. "120": {
  5395. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5396. "position": {
  5397. "type": "list<double>",
  5398. "value": [
  5399. 31.6796875,
  5400. 29
  5401. ]
  5402. },
  5403. "orientation": {
  5404. "type": "double",
  5405. "value": 0
  5406. },
  5407. "scale": {
  5408. "type": "list<double>",
  5409. "value": [
  5410. 1,
  5411. 1
  5412. ]
  5413. },
  5414. "link-style": {
  5415. "type": "map<string,string>",
  5416. "value": {
  5417. "stroke": "#00ffff",
  5418. "stroke-dasharray": "",
  5419. "stroke-opacity": 0.1,
  5420. "stroke-width": 1
  5421. }
  5422. }
  5423. }
  5424. },
  5425. "edges": [
  5426. {
  5427. "src": "117",
  5428. "dest": "119"
  5429. },
  5430. {
  5431. "src": "119",
  5432. "dest": "104"
  5433. },
  5434. {
  5435. "src": "117",
  5436. "dest": "120"
  5437. },
  5438. {
  5439. "src": "120",
  5440. "dest": "110"
  5441. }
  5442. ]
  5443. }
  5444. },
  5445. "$asuri": {
  5446. "type": "string",
  5447. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/DevsInstance/30.instance"
  5448. },
  5449. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/DevsInstanceIcon"
  5450. },
  5451. "31": {
  5452. "typename": {
  5453. "type": "string",
  5454. "value": "DevsInstanceIcon"
  5455. },
  5456. "position": {
  5457. "type": "list<double>",
  5458. "value": [
  5459. 719,
  5460. 701
  5461. ]
  5462. },
  5463. "orientation": {
  5464. "type": "double",
  5465. "value": 0
  5466. },
  5467. "scale": {
  5468. "type": "list<double>",
  5469. "value": [
  5470. 1,
  5471. 1
  5472. ]
  5473. },
  5474. "mapper": {
  5475. "type": "code",
  5476. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'position': getAttr('position'), 'scale': getAttr('scale')})"
  5477. },
  5478. "parser": {
  5479. "type": "code",
  5480. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'position': getAttr('position'), 'scale': getAttr('scale')})"
  5481. },
  5482. "$contents": {
  5483. "type": "map<string,*>",
  5484. "value": {
  5485. "nodes": {
  5486. "104": {
  5487. "textContent": {
  5488. "type": "string",
  5489. "value": "p"
  5490. },
  5491. "style": {
  5492. "type": "map<string,string>",
  5493. "value": {
  5494. "stroke": "#ffffff",
  5495. "stroke-dasharray": "",
  5496. "fill": "#000000",
  5497. "fill-opacity": 1,
  5498. "font-size": "12px",
  5499. "stroke-width": 0,
  5500. "arrow-start": "none",
  5501. "arrow-end": "none"
  5502. }
  5503. },
  5504. "mapper": {
  5505. "type": "code",
  5506. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  5507. },
  5508. "parser": {
  5509. "type": "code",
  5510. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  5511. },
  5512. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  5513. "position": {
  5514. "type": "list<double>",
  5515. "value": [
  5516. 15,
  5517. 26
  5518. ]
  5519. },
  5520. "orientation": {
  5521. "type": "double",
  5522. "value": 0
  5523. },
  5524. "scale": {
  5525. "type": "list<double>",
  5526. "value": [
  5527. 1,
  5528. 1
  5529. ]
  5530. }
  5531. },
  5532. "110": {
  5533. "textContent": {
  5534. "type": "string",
  5535. "value": ":Processor"
  5536. },
  5537. "style": {
  5538. "type": "map<string,string>",
  5539. "value": {
  5540. "stroke": "#ffffff",
  5541. "stroke-dasharray": "",
  5542. "fill": "#000000",
  5543. "fill-opacity": 1,
  5544. "font-size": "12px",
  5545. "stroke-width": 0,
  5546. "arrow-start": "none",
  5547. "arrow-end": "none"
  5548. }
  5549. },
  5550. "mapper": {
  5551. "type": "code",
  5552. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': ':' + getAttr('devs_type')})"
  5553. },
  5554. "parser": {
  5555. "type": "code",
  5556. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5557. },
  5558. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  5559. "position": {
  5560. "type": "list<double>",
  5561. "value": [
  5562. 33,
  5563. 46
  5564. ]
  5565. },
  5566. "orientation": {
  5567. "type": "double",
  5568. "value": 0
  5569. },
  5570. "scale": {
  5571. "type": "list<double>",
  5572. "value": [
  5573. 1,
  5574. 1
  5575. ]
  5576. }
  5577. },
  5578. "117": {
  5579. "width": {
  5580. "type": "double",
  5581. "value": 100
  5582. },
  5583. "height": {
  5584. "type": "double",
  5585. "value": 100
  5586. },
  5587. "cornerRadius": {
  5588. "type": "double",
  5589. "value": 5
  5590. },
  5591. "style": {
  5592. "type": "map<string,string>",
  5593. "value": {
  5594. "stroke": "#000000",
  5595. "stroke-dasharray": "",
  5596. "fill": "#000000",
  5597. "fill-opacity": 0.15,
  5598. "font-size": "20px",
  5599. "stroke-width": 1,
  5600. "arrow-start": "none",
  5601. "arrow-end": "none"
  5602. }
  5603. },
  5604. "mapper": {
  5605. "type": "code",
  5606. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  5607. },
  5608. "parser": {
  5609. "type": "code",
  5610. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5611. },
  5612. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  5613. "position": {
  5614. "type": "list<double>",
  5615. "value": [
  5616. 7,
  5617. 4
  5618. ]
  5619. },
  5620. "orientation": {
  5621. "type": "double",
  5622. "value": 0
  5623. },
  5624. "scale": {
  5625. "type": "list<double>",
  5626. "value": [
  5627. 1,
  5628. 1
  5629. ]
  5630. }
  5631. },
  5632. "119": {
  5633. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5634. "position": {
  5635. "type": "list<double>",
  5636. "value": [
  5637. 22.791684421312993,
  5638. 19.099999244142055
  5639. ]
  5640. },
  5641. "orientation": {
  5642. "type": "double",
  5643. "value": 0
  5644. },
  5645. "scale": {
  5646. "type": "list<double>",
  5647. "value": [
  5648. 1,
  5649. 1
  5650. ]
  5651. },
  5652. "link-style": {
  5653. "type": "map<string,string>",
  5654. "value": {
  5655. "stroke": "#00ffff",
  5656. "stroke-dasharray": "",
  5657. "stroke-opacity": 0.1,
  5658. "stroke-width": 1
  5659. }
  5660. }
  5661. },
  5662. "120": {
  5663. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5664. "position": {
  5665. "type": "list<double>",
  5666. "value": [
  5667. 31.6796875,
  5668. 29
  5669. ]
  5670. },
  5671. "orientation": {
  5672. "type": "double",
  5673. "value": 0
  5674. },
  5675. "scale": {
  5676. "type": "list<double>",
  5677. "value": [
  5678. 1,
  5679. 1
  5680. ]
  5681. },
  5682. "link-style": {
  5683. "type": "map<string,string>",
  5684. "value": {
  5685. "stroke": "#00ffff",
  5686. "stroke-dasharray": "",
  5687. "stroke-opacity": 0.1,
  5688. "stroke-width": 1
  5689. }
  5690. }
  5691. }
  5692. },
  5693. "edges": [
  5694. {
  5695. "src": "117",
  5696. "dest": "119"
  5697. },
  5698. {
  5699. "src": "119",
  5700. "dest": "104"
  5701. },
  5702. {
  5703. "src": "117",
  5704. "dest": "120"
  5705. },
  5706. {
  5707. "src": "120",
  5708. "dest": "110"
  5709. }
  5710. ]
  5711. }
  5712. },
  5713. "$asuri": {
  5714. "type": "string",
  5715. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/DevsInstance/31.instance"
  5716. },
  5717. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/DevsInstanceIcon"
  5718. },
  5719. "32": {
  5720. "typename": {
  5721. "type": "string",
  5722. "value": "DevsInstanceIcon"
  5723. },
  5724. "position": {
  5725. "type": "list<double>",
  5726. "value": [
  5727. 894,
  5728. 701
  5729. ]
  5730. },
  5731. "orientation": {
  5732. "type": "double",
  5733. "value": 0
  5734. },
  5735. "scale": {
  5736. "type": "list<double>",
  5737. "value": [
  5738. 1,
  5739. 1
  5740. ]
  5741. },
  5742. "mapper": {
  5743. "type": "code",
  5744. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'position': getAttr('position'), 'scale': getAttr('scale')})"
  5745. },
  5746. "parser": {
  5747. "type": "code",
  5748. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'position': getAttr('position'), 'scale': getAttr('scale')})"
  5749. },
  5750. "$contents": {
  5751. "type": "map<string,*>",
  5752. "value": {
  5753. "nodes": {
  5754. "104": {
  5755. "textContent": {
  5756. "type": "string",
  5757. "value": "c"
  5758. },
  5759. "style": {
  5760. "type": "map<string,string>",
  5761. "value": {
  5762. "stroke": "#ffffff",
  5763. "stroke-dasharray": "",
  5764. "fill": "#000000",
  5765. "fill-opacity": 1,
  5766. "font-size": "12px",
  5767. "stroke-width": 0,
  5768. "arrow-start": "none",
  5769. "arrow-end": "none"
  5770. }
  5771. },
  5772. "mapper": {
  5773. "type": "code",
  5774. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  5775. },
  5776. "parser": {
  5777. "type": "code",
  5778. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  5779. },
  5780. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  5781. "position": {
  5782. "type": "list<double>",
  5783. "value": [
  5784. 15,
  5785. 26
  5786. ]
  5787. },
  5788. "orientation": {
  5789. "type": "double",
  5790. "value": 0
  5791. },
  5792. "scale": {
  5793. "type": "list<double>",
  5794. "value": [
  5795. 1,
  5796. 1
  5797. ]
  5798. }
  5799. },
  5800. "110": {
  5801. "textContent": {
  5802. "type": "string",
  5803. "value": ":Collector"
  5804. },
  5805. "style": {
  5806. "type": "map<string,string>",
  5807. "value": {
  5808. "stroke": "#ffffff",
  5809. "stroke-dasharray": "",
  5810. "fill": "#000000",
  5811. "fill-opacity": 1,
  5812. "font-size": "12px",
  5813. "stroke-width": 0,
  5814. "arrow-start": "none",
  5815. "arrow-end": "none"
  5816. }
  5817. },
  5818. "mapper": {
  5819. "type": "code",
  5820. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': ':' + getAttr('devs_type')})"
  5821. },
  5822. "parser": {
  5823. "type": "code",
  5824. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5825. },
  5826. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  5827. "position": {
  5828. "type": "list<double>",
  5829. "value": [
  5830. 33,
  5831. 46
  5832. ]
  5833. },
  5834. "orientation": {
  5835. "type": "double",
  5836. "value": 0
  5837. },
  5838. "scale": {
  5839. "type": "list<double>",
  5840. "value": [
  5841. 1,
  5842. 1
  5843. ]
  5844. }
  5845. },
  5846. "117": {
  5847. "width": {
  5848. "type": "double",
  5849. "value": 100
  5850. },
  5851. "height": {
  5852. "type": "double",
  5853. "value": 100
  5854. },
  5855. "cornerRadius": {
  5856. "type": "double",
  5857. "value": 5
  5858. },
  5859. "style": {
  5860. "type": "map<string,string>",
  5861. "value": {
  5862. "stroke": "#000000",
  5863. "stroke-dasharray": "",
  5864. "fill": "#000000",
  5865. "fill-opacity": 0.15,
  5866. "font-size": "20px",
  5867. "stroke-width": 1,
  5868. "arrow-start": "none",
  5869. "arrow-end": "none"
  5870. }
  5871. },
  5872. "mapper": {
  5873. "type": "code",
  5874. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  5875. },
  5876. "parser": {
  5877. "type": "code",
  5878. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5879. },
  5880. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  5881. "position": {
  5882. "type": "list<double>",
  5883. "value": [
  5884. 7,
  5885. 4
  5886. ]
  5887. },
  5888. "orientation": {
  5889. "type": "double",
  5890. "value": 0
  5891. },
  5892. "scale": {
  5893. "type": "list<double>",
  5894. "value": [
  5895. 1,
  5896. 1
  5897. ]
  5898. }
  5899. },
  5900. "119": {
  5901. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5902. "position": {
  5903. "type": "list<double>",
  5904. "value": [
  5905. 22.791684421312993,
  5906. 19.099999244142055
  5907. ]
  5908. },
  5909. "orientation": {
  5910. "type": "double",
  5911. "value": 0
  5912. },
  5913. "scale": {
  5914. "type": "list<double>",
  5915. "value": [
  5916. 1,
  5917. 1
  5918. ]
  5919. },
  5920. "link-style": {
  5921. "type": "map<string,string>",
  5922. "value": {
  5923. "stroke": "#00ffff",
  5924. "stroke-dasharray": "",
  5925. "stroke-opacity": 0.1,
  5926. "stroke-width": 1
  5927. }
  5928. }
  5929. },
  5930. "120": {
  5931. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5932. "position": {
  5933. "type": "list<double>",
  5934. "value": [
  5935. 31.6796875,
  5936. 29
  5937. ]
  5938. },
  5939. "orientation": {
  5940. "type": "double",
  5941. "value": 0
  5942. },
  5943. "scale": {
  5944. "type": "list<double>",
  5945. "value": [
  5946. 1,
  5947. 1
  5948. ]
  5949. },
  5950. "link-style": {
  5951. "type": "map<string,string>",
  5952. "value": {
  5953. "stroke": "#00ffff",
  5954. "stroke-dasharray": "",
  5955. "stroke-opacity": 0.1,
  5956. "stroke-width": 1
  5957. }
  5958. }
  5959. }
  5960. },
  5961. "edges": [
  5962. {
  5963. "src": "117",
  5964. "dest": "119"
  5965. },
  5966. {
  5967. "src": "119",
  5968. "dest": "104"
  5969. },
  5970. {
  5971. "src": "117",
  5972. "dest": "120"
  5973. },
  5974. {
  5975. "src": "120",
  5976. "dest": "110"
  5977. }
  5978. ]
  5979. }
  5980. },
  5981. "$asuri": {
  5982. "type": "string",
  5983. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/DevsInstance/32.instance"
  5984. },
  5985. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/DevsInstanceIcon"
  5986. },
  5987. "33": {
  5988. "typename": {
  5989. "type": "string",
  5990. "value": "OutputPortIcon"
  5991. },
  5992. "position": {
  5993. "type": "list<double>",
  5994. "value": [
  5995. 549.1705135475434,
  5996. 393.20796368611167
  5997. ]
  5998. },
  5999. "orientation": {
  6000. "type": "double",
  6001. "value": 0
  6002. },
  6003. "scale": {
  6004. "type": "list<double>",
  6005. "value": [
  6006. 1,
  6007. 1
  6008. ]
  6009. },
  6010. "mapper": {
  6011. "type": "code",
  6012. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'position': [getAttr('position')[0], getAttr('position')[1]]})"
  6013. },
  6014. "parser": {
  6015. "type": "code",
  6016. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'position': getAttr('position')})"
  6017. },
  6018. "$contents": {
  6019. "type": "map<string,*>",
  6020. "value": {
  6021. "nodes": {
  6022. "48": {
  6023. "r": {
  6024. "type": "double",
  6025. "value": 7
  6026. },
  6027. "sides": {
  6028. "type": "int",
  6029. "value": 4
  6030. },
  6031. "style": {
  6032. "type": "map<string,string>",
  6033. "value": {
  6034. "stroke": "#000000",
  6035. "stroke-dasharray": "",
  6036. "fill": "purple",
  6037. "fill-opacity": 1,
  6038. "font-size": "20px",
  6039. "stroke-width": 1,
  6040. "arrow-start": "none",
  6041. "arrow-end": "none"
  6042. }
  6043. },
  6044. "mapper": {
  6045. "type": "code",
  6046. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6047. },
  6048. "parser": {
  6049. "type": "code",
  6050. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6051. },
  6052. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Polygon",
  6053. "position": {
  6054. "type": "list<double>",
  6055. "value": [
  6056. 4,
  6057. 1
  6058. ]
  6059. },
  6060. "orientation": {
  6061. "type": "double",
  6062. "value": 0
  6063. },
  6064. "scale": {
  6065. "type": "list<double>",
  6066. "value": [
  6067. 1,
  6068. 1
  6069. ]
  6070. }
  6071. },
  6072. "50": {
  6073. "textContent": {
  6074. "type": "string",
  6075. "value": "p_out"
  6076. },
  6077. "style": {
  6078. "type": "map<string,string>",
  6079. "value": {
  6080. "stroke": "#ffffff",
  6081. "stroke-dasharray": "",
  6082. "fill": "#000000",
  6083. "fill-opacity": 1,
  6084. "font-size": "12px",
  6085. "stroke-width": 0,
  6086. "arrow-start": "none",
  6087. "arrow-end": "none"
  6088. }
  6089. },
  6090. "mapper": {
  6091. "type": "code",
  6092. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  6093. },
  6094. "parser": {
  6095. "type": "code",
  6096. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  6097. },
  6098. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  6099. "position": {
  6100. "type": "list<double>",
  6101. "value": [
  6102. 4,
  6103. 21
  6104. ]
  6105. },
  6106. "orientation": {
  6107. "type": "double",
  6108. "value": 0
  6109. },
  6110. "scale": {
  6111. "type": "list<double>",
  6112. "value": [
  6113. 1,
  6114. 1
  6115. ]
  6116. }
  6117. }
  6118. },
  6119. "edges": []
  6120. }
  6121. },
  6122. "$asuri": {
  6123. "type": "string",
  6124. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/OutputPort/33.instance"
  6125. },
  6126. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/OutputPortIcon"
  6127. },
  6128. "34": {
  6129. "link-style": {
  6130. "type": "map<string,string>",
  6131. "value": {
  6132. "stroke": "#000000",
  6133. "stroke-dasharray": "",
  6134. "stroke-opacity": 1,
  6135. "stroke-width": 0
  6136. }
  6137. },
  6138. "arrowHead": {
  6139. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  6140. "value": "custom"
  6141. },
  6142. "arrowTail": {
  6143. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  6144. "value": "arrow-black"
  6145. },
  6146. "typename": {
  6147. "type": "string",
  6148. "value": "portsLink"
  6149. },
  6150. "position": {
  6151. "type": "list<double>",
  6152. "value": [
  6153. 579.1432430882306,
  6154. 404.4527027538861
  6155. ]
  6156. },
  6157. "orientation": {
  6158. "type": "double",
  6159. "value": 0
  6160. },
  6161. "scale": {
  6162. "type": "list<double>",
  6163. "value": [
  6164. 1,
  6165. 1
  6166. ]
  6167. },
  6168. "mapper": {
  6169. "type": "code",
  6170. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6171. },
  6172. "parser": {
  6173. "type": "code",
  6174. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6175. },
  6176. "$contents": {
  6177. "type": "map<string,*>",
  6178. "value": {
  6179. "nodes": {},
  6180. "edges": []
  6181. }
  6182. },
  6183. "$asuri": {
  6184. "type": "string",
  6185. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/ports/34.instance"
  6186. },
  6187. "$segments": {
  6188. "type": "map<string,list<string>>",
  6189. "value": {
  6190. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/AtomicDEVSIcon/0.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink/34.instance": "M526,422L579.1432430882306,404.4527027538861",
  6191. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink/34.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/OutputPortIcon/33.instance": "M579.0714925543826,404.4763939678926L631.9997420590788,387.00008516917205"
  6192. }
  6193. },
  6194. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink"
  6195. },
  6196. "35": {
  6197. "typename": {
  6198. "type": "string",
  6199. "value": "OutputPortIcon"
  6200. },
  6201. "position": {
  6202. "type": "list<double>",
  6203. "value": [
  6204. 1221.5725439999999,
  6205. 396
  6206. ]
  6207. },
  6208. "orientation": {
  6209. "type": "double",
  6210. "value": 0
  6211. },
  6212. "scale": {
  6213. "type": "list<double>",
  6214. "value": [
  6215. 1,
  6216. 1
  6217. ]
  6218. },
  6219. "mapper": {
  6220. "type": "code",
  6221. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'position': [getAttr('position')[0], getAttr('position')[1]]})"
  6222. },
  6223. "parser": {
  6224. "type": "code",
  6225. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'position': getAttr('position')})"
  6226. },
  6227. "$contents": {
  6228. "type": "map<string,*>",
  6229. "value": {
  6230. "nodes": {
  6231. "48": {
  6232. "r": {
  6233. "type": "double",
  6234. "value": 7
  6235. },
  6236. "sides": {
  6237. "type": "int",
  6238. "value": 4
  6239. },
  6240. "style": {
  6241. "type": "map<string,string>",
  6242. "value": {
  6243. "stroke": "#000000",
  6244. "stroke-dasharray": "",
  6245. "fill": "purple",
  6246. "fill-opacity": 1,
  6247. "font-size": "20px",
  6248. "stroke-width": 1,
  6249. "arrow-start": "none",
  6250. "arrow-end": "none"
  6251. }
  6252. },
  6253. "mapper": {
  6254. "type": "code",
  6255. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6256. },
  6257. "parser": {
  6258. "type": "code",
  6259. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6260. },
  6261. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Polygon",
  6262. "position": {
  6263. "type": "list<double>",
  6264. "value": [
  6265. 4,
  6266. 1
  6267. ]
  6268. },
  6269. "orientation": {
  6270. "type": "double",
  6271. "value": 0
  6272. },
  6273. "scale": {
  6274. "type": "list<double>",
  6275. "value": [
  6276. 1,
  6277. 1
  6278. ]
  6279. }
  6280. },
  6281. "50": {
  6282. "textContent": {
  6283. "type": "string",
  6284. "value": "p_out"
  6285. },
  6286. "style": {
  6287. "type": "map<string,string>",
  6288. "value": {
  6289. "stroke": "#ffffff",
  6290. "stroke-dasharray": "",
  6291. "fill": "#000000",
  6292. "fill-opacity": 1,
  6293. "font-size": "12px",
  6294. "stroke-width": 0,
  6295. "arrow-start": "none",
  6296. "arrow-end": "none"
  6297. }
  6298. },
  6299. "mapper": {
  6300. "type": "code",
  6301. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  6302. },
  6303. "parser": {
  6304. "type": "code",
  6305. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  6306. },
  6307. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  6308. "position": {
  6309. "type": "list<double>",
  6310. "value": [
  6311. 4,
  6312. 21
  6313. ]
  6314. },
  6315. "orientation": {
  6316. "type": "double",
  6317. "value": 0
  6318. },
  6319. "scale": {
  6320. "type": "list<double>",
  6321. "value": [
  6322. 1,
  6323. 1
  6324. ]
  6325. }
  6326. }
  6327. },
  6328. "edges": []
  6329. }
  6330. },
  6331. "$asuri": {
  6332. "type": "string",
  6333. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/OutputPort/35.instance"
  6334. },
  6335. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/OutputPortIcon"
  6336. },
  6337. "36": {
  6338. "link-style": {
  6339. "type": "map<string,string>",
  6340. "value": {
  6341. "stroke": "#000000",
  6342. "stroke-dasharray": "",
  6343. "stroke-opacity": 1,
  6344. "stroke-width": 0
  6345. }
  6346. },
  6347. "arrowHead": {
  6348. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  6349. "value": "custom"
  6350. },
  6351. "arrowTail": {
  6352. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  6353. "value": "arrow-black"
  6354. },
  6355. "typename": {
  6356. "type": "string",
  6357. "value": "portsLink"
  6358. },
  6359. "position": {
  6360. "type": "list<double>",
  6361. "value": [
  6362. 1242.1271181571633,
  6363. 405.9186443794156
  6364. ]
  6365. },
  6366. "orientation": {
  6367. "type": "double",
  6368. "value": 0
  6369. },
  6370. "scale": {
  6371. "type": "list<double>",
  6372. "value": [
  6373. 1,
  6374. 1
  6375. ]
  6376. },
  6377. "mapper": {
  6378. "type": "code",
  6379. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6380. },
  6381. "parser": {
  6382. "type": "code",
  6383. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6384. },
  6385. "$contents": {
  6386. "type": "map<string,*>",
  6387. "value": {
  6388. "nodes": {},
  6389. "edges": []
  6390. }
  6391. },
  6392. "$asuri": {
  6393. "type": "string",
  6394. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/ports/36.instance"
  6395. },
  6396. "$segments": {
  6397. "type": "map<string,list<string>>",
  6398. "value": {
  6399. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/AtomicDEVSIcon/9.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink/36.instance": "M1217,422L1242.1271181571633,405.9186443794156",
  6400. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink/36.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/OutputPortIcon/35.instance": "M1242.0633438064588,405.9594599638665L1284.9995695762473,387.00027547120203"
  6401. }
  6402. },
  6403. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink"
  6404. },
  6405. "37": {
  6406. "typename": {
  6407. "type": "string",
  6408. "value": "InputPortIcon"
  6409. },
  6410. "position": {
  6411. "type": "list<double>",
  6412. "value": [
  6413. 665.572544,
  6414. 393
  6415. ]
  6416. },
  6417. "orientation": {
  6418. "type": "double",
  6419. "value": 0
  6420. },
  6421. "scale": {
  6422. "type": "list<double>",
  6423. "value": [
  6424. 1,
  6425. 1
  6426. ]
  6427. },
  6428. "mapper": {
  6429. "type": "code",
  6430. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'position': getAttr('position')})"
  6431. },
  6432. "parser": {
  6433. "type": "code",
  6434. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'position': getAttr('position')})"
  6435. },
  6436. "$contents": {
  6437. "type": "map<string,*>",
  6438. "value": {
  6439. "nodes": {
  6440. "54": {
  6441. "r": {
  6442. "type": "double",
  6443. "value": 7
  6444. },
  6445. "sides": {
  6446. "type": "int",
  6447. "value": 4
  6448. },
  6449. "style": {
  6450. "type": "map<string,string>",
  6451. "value": {
  6452. "stroke": "#000000",
  6453. "stroke-dasharray": "",
  6454. "fill": "green",
  6455. "fill-opacity": 1,
  6456. "font-size": "20px",
  6457. "stroke-width": 1,
  6458. "arrow-start": "none",
  6459. "arrow-end": "none"
  6460. }
  6461. },
  6462. "mapper": {
  6463. "type": "code",
  6464. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6465. },
  6466. "parser": {
  6467. "type": "code",
  6468. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6469. },
  6470. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Polygon",
  6471. "position": {
  6472. "type": "list<double>",
  6473. "value": [
  6474. 5,
  6475. 1
  6476. ]
  6477. },
  6478. "orientation": {
  6479. "type": "double",
  6480. "value": 0
  6481. },
  6482. "scale": {
  6483. "type": "list<double>",
  6484. "value": [
  6485. 1,
  6486. 1
  6487. ]
  6488. }
  6489. },
  6490. "55": {
  6491. "textContent": {
  6492. "type": "string",
  6493. "value": "p_in"
  6494. },
  6495. "style": {
  6496. "type": "map<string,string>",
  6497. "value": {
  6498. "stroke": "#ffffff",
  6499. "stroke-dasharray": "",
  6500. "fill": "#000000",
  6501. "fill-opacity": 1,
  6502. "font-size": "12px",
  6503. "stroke-width": 0,
  6504. "arrow-start": "none",
  6505. "arrow-end": "none"
  6506. }
  6507. },
  6508. "mapper": {
  6509. "type": "code",
  6510. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  6511. },
  6512. "parser": {
  6513. "type": "code",
  6514. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  6515. },
  6516. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  6517. "position": {
  6518. "type": "list<double>",
  6519. "value": [
  6520. 4,
  6521. 21
  6522. ]
  6523. },
  6524. "orientation": {
  6525. "type": "double",
  6526. "value": 0
  6527. },
  6528. "scale": {
  6529. "type": "list<double>",
  6530. "value": [
  6531. 1,
  6532. 1
  6533. ]
  6534. }
  6535. }
  6536. },
  6537. "edges": []
  6538. }
  6539. },
  6540. "$asuri": {
  6541. "type": "string",
  6542. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/InputPort/37.instance"
  6543. },
  6544. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/InputPortIcon"
  6545. },
  6546. "38": {
  6547. "link-style": {
  6548. "type": "map<string,string>",
  6549. "value": {
  6550. "stroke": "#000000",
  6551. "stroke-dasharray": "",
  6552. "stroke-opacity": 1,
  6553. "stroke-width": 0
  6554. }
  6555. },
  6556. "arrowHead": {
  6557. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  6558. "value": "custom"
  6559. },
  6560. "arrowTail": {
  6561. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  6562. "value": "arrow-black"
  6563. },
  6564. "typename": {
  6565. "type": "string",
  6566. "value": "portsLink"
  6567. },
  6568. "position": {
  6569. "type": "list<double>",
  6570. "value": [
  6571. 660.5,
  6572. 391
  6573. ]
  6574. },
  6575. "orientation": {
  6576. "type": "double",
  6577. "value": 0
  6578. },
  6579. "scale": {
  6580. "type": "list<double>",
  6581. "value": [
  6582. 1,
  6583. 1
  6584. ]
  6585. },
  6586. "mapper": {
  6587. "type": "code",
  6588. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6589. },
  6590. "parser": {
  6591. "type": "code",
  6592. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6593. },
  6594. "$contents": {
  6595. "type": "map<string,*>",
  6596. "value": {
  6597. "nodes": {},
  6598. "edges": []
  6599. }
  6600. },
  6601. "$asuri": {
  6602. "type": "string",
  6603. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/ports/38.instance"
  6604. },
  6605. "$segments": {
  6606. "type": "map<string,list<string>>",
  6607. "value": {
  6608. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/AtomicDEVSIcon/9.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink/38.instance": "M699,409L660.5,391",
  6609. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink/38.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/InputPortIcon/37.instance": "M660.4314137227229,390.96793368854594L638.0003271211262,385.0001529397474"
  6610. }
  6611. },
  6612. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink"
  6613. },
  6614. "39": {
  6615. "typename": {
  6616. "type": "string",
  6617. "value": "InputPortIcon"
  6618. },
  6619. "position": {
  6620. "type": "list<double>",
  6621. "value": [
  6622. 1264.3431606108159,
  6623. 343.86722289
  6624. ]
  6625. },
  6626. "orientation": {
  6627. "type": "double",
  6628. "value": 0
  6629. },
  6630. "scale": {
  6631. "type": "list<double>",
  6632. "value": [
  6633. 1,
  6634. 1
  6635. ]
  6636. },
  6637. "mapper": {
  6638. "type": "code",
  6639. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'position': getAttr('position')})"
  6640. },
  6641. "parser": {
  6642. "type": "code",
  6643. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'position': getAttr('position')})"
  6644. },
  6645. "$contents": {
  6646. "type": "map<string,*>",
  6647. "value": {
  6648. "nodes": {
  6649. "54": {
  6650. "r": {
  6651. "type": "double",
  6652. "value": 7
  6653. },
  6654. "sides": {
  6655. "type": "int",
  6656. "value": 4
  6657. },
  6658. "style": {
  6659. "type": "map<string,string>",
  6660. "value": {
  6661. "stroke": "#000000",
  6662. "stroke-dasharray": "",
  6663. "fill": "green",
  6664. "fill-opacity": 1,
  6665. "font-size": "20px",
  6666. "stroke-width": 1,
  6667. "arrow-start": "none",
  6668. "arrow-end": "none"
  6669. }
  6670. },
  6671. "mapper": {
  6672. "type": "code",
  6673. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6674. },
  6675. "parser": {
  6676. "type": "code",
  6677. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6678. },
  6679. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Polygon",
  6680. "position": {
  6681. "type": "list<double>",
  6682. "value": [
  6683. 5,
  6684. 1
  6685. ]
  6686. },
  6687. "orientation": {
  6688. "type": "double",
  6689. "value": 0
  6690. },
  6691. "scale": {
  6692. "type": "list<double>",
  6693. "value": [
  6694. 1,
  6695. 1
  6696. ]
  6697. }
  6698. },
  6699. "55": {
  6700. "textContent": {
  6701. "type": "string",
  6702. "value": "p_in"
  6703. },
  6704. "style": {
  6705. "type": "map<string,string>",
  6706. "value": {
  6707. "stroke": "#ffffff",
  6708. "stroke-dasharray": "",
  6709. "fill": "#000000",
  6710. "fill-opacity": 1,
  6711. "font-size": "12px",
  6712. "stroke-width": 0,
  6713. "arrow-start": "none",
  6714. "arrow-end": "none"
  6715. }
  6716. },
  6717. "mapper": {
  6718. "type": "code",
  6719. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  6720. },
  6721. "parser": {
  6722. "type": "code",
  6723. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  6724. },
  6725. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  6726. "position": {
  6727. "type": "list<double>",
  6728. "value": [
  6729. 4,
  6730. 21
  6731. ]
  6732. },
  6733. "orientation": {
  6734. "type": "double",
  6735. "value": 0
  6736. },
  6737. "scale": {
  6738. "type": "list<double>",
  6739. "value": [
  6740. 1,
  6741. 1
  6742. ]
  6743. }
  6744. }
  6745. },
  6746. "edges": []
  6747. }
  6748. },
  6749. "$asuri": {
  6750. "type": "string",
  6751. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/InputPort/39.instance"
  6752. },
  6753. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/InputPortIcon"
  6754. },
  6755. "40": {
  6756. "link-style": {
  6757. "type": "map<string,string>",
  6758. "value": {
  6759. "stroke": "#000000",
  6760. "stroke-dasharray": "",
  6761. "stroke-opacity": 1,
  6762. "stroke-width": 0
  6763. }
  6764. },
  6765. "arrowHead": {
  6766. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  6767. "value": "custom"
  6768. },
  6769. "arrowTail": {
  6770. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  6771. "value": "arrow-black"
  6772. },
  6773. "typename": {
  6774. "type": "string",
  6775. "value": "portsLink"
  6776. },
  6777. "position": {
  6778. "type": "list<double>",
  6779. "value": [
  6780. 1254.5,
  6781. 303
  6782. ]
  6783. },
  6784. "orientation": {
  6785. "type": "double",
  6786. "value": 0
  6787. },
  6788. "scale": {
  6789. "type": "list<double>",
  6790. "value": [
  6791. 1,
  6792. 1
  6793. ]
  6794. },
  6795. "mapper": {
  6796. "type": "code",
  6797. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6798. },
  6799. "parser": {
  6800. "type": "code",
  6801. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6802. },
  6803. "$contents": {
  6804. "type": "map<string,*>",
  6805. "value": {
  6806. "nodes": {},
  6807. "edges": []
  6808. }
  6809. },
  6810. "$asuri": {
  6811. "type": "string",
  6812. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/ports/40.instance"
  6813. },
  6814. "$segments": {
  6815. "type": "map<string,list<string>>",
  6816. "value": {
  6817. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/AtomicDEVSIcon/22.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink/40.instance": "M1282,353L1254.5,303",
  6818. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink/40.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/InputPortIcon/39.instance": "M1254.4638792797768,302.9343259632307L1180.0001268878955,283.00023070526424"
  6819. }
  6820. },
  6821. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink"
  6822. },
  6823. "41": {
  6824. "typename": {
  6825. "type": "string",
  6826. "value": "InputPortIcon"
  6827. },
  6828. "position": {
  6829. "type": "list<double>",
  6830. "value": [
  6831. 887,
  6832. 749
  6833. ]
  6834. },
  6835. "orientation": {
  6836. "type": "double",
  6837. "value": 0
  6838. },
  6839. "scale": {
  6840. "type": "list<double>",
  6841. "value": [
  6842. 1,
  6843. 1
  6844. ]
  6845. },
  6846. "mapper": {
  6847. "type": "code",
  6848. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'position': getAttr('position')})"
  6849. },
  6850. "parser": {
  6851. "type": "code",
  6852. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'position': getAttr('position')})"
  6853. },
  6854. "$contents": {
  6855. "type": "map<string,*>",
  6856. "value": {
  6857. "nodes": {
  6858. "54": {
  6859. "r": {
  6860. "type": "double",
  6861. "value": 7
  6862. },
  6863. "sides": {
  6864. "type": "int",
  6865. "value": 4
  6866. },
  6867. "style": {
  6868. "type": "map<string,string>",
  6869. "value": {
  6870. "stroke": "#000000",
  6871. "stroke-dasharray": "",
  6872. "fill": "green",
  6873. "fill-opacity": 1,
  6874. "font-size": "20px",
  6875. "stroke-width": 1,
  6876. "arrow-start": "none",
  6877. "arrow-end": "none"
  6878. }
  6879. },
  6880. "mapper": {
  6881. "type": "code",
  6882. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6883. },
  6884. "parser": {
  6885. "type": "code",
  6886. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6887. },
  6888. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Polygon",
  6889. "position": {
  6890. "type": "list<double>",
  6891. "value": [
  6892. 5,
  6893. 1
  6894. ]
  6895. },
  6896. "orientation": {
  6897. "type": "double",
  6898. "value": 0
  6899. },
  6900. "scale": {
  6901. "type": "list<double>",
  6902. "value": [
  6903. 1,
  6904. 1
  6905. ]
  6906. }
  6907. },
  6908. "55": {
  6909. "textContent": {
  6910. "type": "string",
  6911. "value": "p_in"
  6912. },
  6913. "style": {
  6914. "type": "map<string,string>",
  6915. "value": {
  6916. "stroke": "#ffffff",
  6917. "stroke-dasharray": "",
  6918. "fill": "#000000",
  6919. "fill-opacity": 1,
  6920. "font-size": "12px",
  6921. "stroke-width": 0,
  6922. "arrow-start": "none",
  6923. "arrow-end": "none"
  6924. }
  6925. },
  6926. "mapper": {
  6927. "type": "code",
  6928. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  6929. },
  6930. "parser": {
  6931. "type": "code",
  6932. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  6933. },
  6934. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  6935. "position": {
  6936. "type": "list<double>",
  6937. "value": [
  6938. 4,
  6939. 21
  6940. ]
  6941. },
  6942. "orientation": {
  6943. "type": "double",
  6944. "value": 0
  6945. },
  6946. "scale": {
  6947. "type": "list<double>",
  6948. "value": [
  6949. 1,
  6950. 1
  6951. ]
  6952. }
  6953. }
  6954. },
  6955. "edges": []
  6956. }
  6957. },
  6958. "$asuri": {
  6959. "type": "string",
  6960. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/InputPort/41.instance"
  6961. },
  6962. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/InputPortIcon"
  6963. },
  6964. "42": {
  6965. "typename": {
  6966. "type": "string",
  6967. "value": "InputPortIcon"
  6968. },
  6969. "position": {
  6970. "type": "list<double>",
  6971. "value": [
  6972. 716,
  6973. 750
  6974. ]
  6975. },
  6976. "orientation": {
  6977. "type": "double",
  6978. "value": 0
  6979. },
  6980. "scale": {
  6981. "type": "list<double>",
  6982. "value": [
  6983. 1,
  6984. 1
  6985. ]
  6986. },
  6987. "mapper": {
  6988. "type": "code",
  6989. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'position': getAttr('position')})"
  6990. },
  6991. "parser": {
  6992. "type": "code",
  6993. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'position': getAttr('position')})"
  6994. },
  6995. "$contents": {
  6996. "type": "map<string,*>",
  6997. "value": {
  6998. "nodes": {
  6999. "54": {
  7000. "r": {
  7001. "type": "double",
  7002. "value": 7
  7003. },
  7004. "sides": {
  7005. "type": "int",
  7006. "value": 4
  7007. },
  7008. "style": {
  7009. "type": "map<string,string>",
  7010. "value": {
  7011. "stroke": "#000000",
  7012. "stroke-dasharray": "",
  7013. "fill": "green",
  7014. "fill-opacity": 1,
  7015. "font-size": "20px",
  7016. "stroke-width": 1,
  7017. "arrow-start": "none",
  7018. "arrow-end": "none"
  7019. }
  7020. },
  7021. "mapper": {
  7022. "type": "code",
  7023. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7024. },
  7025. "parser": {
  7026. "type": "code",
  7027. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7028. },
  7029. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Polygon",
  7030. "position": {
  7031. "type": "list<double>",
  7032. "value": [
  7033. 5,
  7034. 1
  7035. ]
  7036. },
  7037. "orientation": {
  7038. "type": "double",
  7039. "value": 0
  7040. },
  7041. "scale": {
  7042. "type": "list<double>",
  7043. "value": [
  7044. 1,
  7045. 1
  7046. ]
  7047. }
  7048. },
  7049. "55": {
  7050. "textContent": {
  7051. "type": "string",
  7052. "value": "p_in"
  7053. },
  7054. "style": {
  7055. "type": "map<string,string>",
  7056. "value": {
  7057. "stroke": "#ffffff",
  7058. "stroke-dasharray": "",
  7059. "fill": "#000000",
  7060. "fill-opacity": 1,
  7061. "font-size": "12px",
  7062. "stroke-width": 0,
  7063. "arrow-start": "none",
  7064. "arrow-end": "none"
  7065. }
  7066. },
  7067. "mapper": {
  7068. "type": "code",
  7069. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  7070. },
  7071. "parser": {
  7072. "type": "code",
  7073. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  7074. },
  7075. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  7076. "position": {
  7077. "type": "list<double>",
  7078. "value": [
  7079. 4,
  7080. 21
  7081. ]
  7082. },
  7083. "orientation": {
  7084. "type": "double",
  7085. "value": 0
  7086. },
  7087. "scale": {
  7088. "type": "list<double>",
  7089. "value": [
  7090. 1,
  7091. 1
  7092. ]
  7093. }
  7094. }
  7095. },
  7096. "edges": []
  7097. }
  7098. },
  7099. "$asuri": {
  7100. "type": "string",
  7101. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/InputPort/42.instance"
  7102. },
  7103. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/InputPortIcon"
  7104. },
  7105. "43": {
  7106. "link-style": {
  7107. "type": "map<string,string>",
  7108. "value": {
  7109. "stroke": "#000000",
  7110. "stroke-dasharray": "",
  7111. "stroke-opacity": 1,
  7112. "stroke-width": 0
  7113. }
  7114. },
  7115. "arrowHead": {
  7116. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  7117. "value": "custom"
  7118. },
  7119. "arrowTail": {
  7120. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  7121. "value": "arrow-black"
  7122. },
  7123. "typename": {
  7124. "type": "string",
  7125. "value": "portsLink"
  7126. },
  7127. "position": {
  7128. "type": "list<double>",
  7129. "value": [
  7130. 1295.9887500234377,
  7131. 849.1499996875
  7132. ]
  7133. },
  7134. "orientation": {
  7135. "type": "double",
  7136. "value": 0
  7137. },
  7138. "scale": {
  7139. "type": "list<double>",
  7140. "value": [
  7141. 1,
  7142. 1
  7143. ]
  7144. },
  7145. "mapper": {
  7146. "type": "code",
  7147. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7148. },
  7149. "parser": {
  7150. "type": "code",
  7151. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7152. },
  7153. "$contents": {
  7154. "type": "map<string,*>",
  7155. "value": {
  7156. "nodes": {},
  7157. "edges": []
  7158. }
  7159. },
  7160. "$asuri": {
  7161. "type": "string",
  7162. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/ports/43.instance"
  7163. },
  7164. "$segments": {
  7165. "type": "map<string,list<string>>",
  7166. "value": {
  7167. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/DevsInstanceIcon/31.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink/43.instance": "M750,714L1295.9887500234374,849.1499996875",
  7168. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink/43.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/InputPortIcon/42.instance": "M1295.9943890654079,849.0748124612297L731.0000281015626,736.9996253125"
  7169. }
  7170. },
  7171. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink"
  7172. },
  7173. "44": {
  7174. "link-style": {
  7175. "type": "map<string,string>",
  7176. "value": {
  7177. "stroke": "#000000",
  7178. "stroke-dasharray": "",
  7179. "stroke-opacity": 1,
  7180. "stroke-width": 0
  7181. }
  7182. },
  7183. "arrowHead": {
  7184. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  7185. "value": "custom"
  7186. },
  7187. "arrowTail": {
  7188. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  7189. "value": "arrow-black"
  7190. },
  7191. "typename": {
  7192. "type": "string",
  7193. "value": "portsLink"
  7194. },
  7195. "position": {
  7196. "type": "list<double>",
  7197. "value": [
  7198. 1454.9666667524007,
  7199. 839.6479162862225
  7200. ]
  7201. },
  7202. "orientation": {
  7203. "type": "double",
  7204. "value": 0
  7205. },
  7206. "scale": {
  7207. "type": "list<double>",
  7208. "value": [
  7209. 1,
  7210. 1
  7211. ]
  7212. },
  7213. "mapper": {
  7214. "type": "code",
  7215. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7216. },
  7217. "parser": {
  7218. "type": "code",
  7219. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7220. },
  7221. "$contents": {
  7222. "type": "map<string,*>",
  7223. "value": {
  7224. "nodes": {},
  7225. "edges": []
  7226. }
  7227. },
  7228. "$asuri": {
  7229. "type": "string",
  7230. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/ports/44.instance"
  7231. },
  7232. "$segments": {
  7233. "type": "map<string,list<string>>",
  7234. "value": {
  7235. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/DevsInstanceIcon/32.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink/44.instance": "M911,729L1454.9666667524007,839.6479162862225",
  7236. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink/44.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/InputPortIcon/41.instance": "M1454.9833796402572,839.5737528463582L885.0000925068587,736.9995895008144"
  7237. }
  7238. },
  7239. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink"
  7240. },
  7241. "45": {
  7242. "typename": {
  7243. "type": "string",
  7244. "value": "OutputPortIcon"
  7245. },
  7246. "position": {
  7247. "type": "list<double>",
  7248. "value": [
  7249. 641,
  7250. 750
  7251. ]
  7252. },
  7253. "orientation": {
  7254. "type": "double",
  7255. "value": 0
  7256. },
  7257. "scale": {
  7258. "type": "list<double>",
  7259. "value": [
  7260. 1,
  7261. 1
  7262. ]
  7263. },
  7264. "mapper": {
  7265. "type": "code",
  7266. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'position': [getAttr('position')[0], getAttr('position')[1]]})"
  7267. },
  7268. "parser": {
  7269. "type": "code",
  7270. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'position': getAttr('position')})"
  7271. },
  7272. "$contents": {
  7273. "type": "map<string,*>",
  7274. "value": {
  7275. "nodes": {
  7276. "48": {
  7277. "r": {
  7278. "type": "double",
  7279. "value": 7
  7280. },
  7281. "sides": {
  7282. "type": "int",
  7283. "value": 4
  7284. },
  7285. "style": {
  7286. "type": "map<string,string>",
  7287. "value": {
  7288. "stroke": "#000000",
  7289. "stroke-dasharray": "",
  7290. "fill": "purple",
  7291. "fill-opacity": 1,
  7292. "font-size": "20px",
  7293. "stroke-width": 1,
  7294. "arrow-start": "none",
  7295. "arrow-end": "none"
  7296. }
  7297. },
  7298. "mapper": {
  7299. "type": "code",
  7300. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7301. },
  7302. "parser": {
  7303. "type": "code",
  7304. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7305. },
  7306. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Polygon",
  7307. "position": {
  7308. "type": "list<double>",
  7309. "value": [
  7310. 4,
  7311. 1
  7312. ]
  7313. },
  7314. "orientation": {
  7315. "type": "double",
  7316. "value": 0
  7317. },
  7318. "scale": {
  7319. "type": "list<double>",
  7320. "value": [
  7321. 1,
  7322. 1
  7323. ]
  7324. }
  7325. },
  7326. "50": {
  7327. "textContent": {
  7328. "type": "string",
  7329. "value": "p_out"
  7330. },
  7331. "style": {
  7332. "type": "map<string,string>",
  7333. "value": {
  7334. "stroke": "#ffffff",
  7335. "stroke-dasharray": "",
  7336. "fill": "#000000",
  7337. "fill-opacity": 1,
  7338. "font-size": "12px",
  7339. "stroke-width": 0,
  7340. "arrow-start": "none",
  7341. "arrow-end": "none"
  7342. }
  7343. },
  7344. "mapper": {
  7345. "type": "code",
  7346. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  7347. },
  7348. "parser": {
  7349. "type": "code",
  7350. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  7351. },
  7352. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  7353. "position": {
  7354. "type": "list<double>",
  7355. "value": [
  7356. 4,
  7357. 21
  7358. ]
  7359. },
  7360. "orientation": {
  7361. "type": "double",
  7362. "value": 0
  7363. },
  7364. "scale": {
  7365. "type": "list<double>",
  7366. "value": [
  7367. 1,
  7368. 1
  7369. ]
  7370. }
  7371. }
  7372. },
  7373. "edges": []
  7374. }
  7375. },
  7376. "$asuri": {
  7377. "type": "string",
  7378. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/OutputPort/45.instance"
  7379. },
  7380. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/OutputPortIcon"
  7381. },
  7382. "46": {
  7383. "link-style": {
  7384. "type": "map<string,string>",
  7385. "value": {
  7386. "stroke": "#000000",
  7387. "stroke-dasharray": "",
  7388. "stroke-opacity": 1,
  7389. "stroke-width": 0
  7390. }
  7391. },
  7392. "arrowHead": {
  7393. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  7394. "value": "custom"
  7395. },
  7396. "arrowTail": {
  7397. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  7398. "value": "arrow-black"
  7399. },
  7400. "typename": {
  7401. "type": "string",
  7402. "value": "portsLink"
  7403. },
  7404. "position": {
  7405. "type": "list<double>",
  7406. "value": [
  7407. 1215,
  7408. 829
  7409. ]
  7410. },
  7411. "orientation": {
  7412. "type": "double",
  7413. "value": 0
  7414. },
  7415. "scale": {
  7416. "type": "list<double>",
  7417. "value": [
  7418. 1,
  7419. 1
  7420. ]
  7421. },
  7422. "mapper": {
  7423. "type": "code",
  7424. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7425. },
  7426. "parser": {
  7427. "type": "code",
  7428. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7429. },
  7430. "$contents": {
  7431. "type": "map<string,*>",
  7432. "value": {
  7433. "nodes": {},
  7434. "edges": []
  7435. }
  7436. },
  7437. "$asuri": {
  7438. "type": "string",
  7439. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/ports/46.instance"
  7440. },
  7441. "$segments": {
  7442. "type": "map<string,list<string>>",
  7443. "value": {
  7444. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/DevsInstanceIcon/30.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink/46.instance": "M651,723L1215,829",
  7445. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink/46.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/OutputPortIcon/45.instance": "M1215.0271900619637,829.0702409934067L655.9998348777028,734.9995734340653"
  7446. }
  7447. },
  7448. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink"
  7449. },
  7450. "47": {
  7451. "typename": {
  7452. "type": "string",
  7453. "value": "OutputPortIcon"
  7454. },
  7455. "position": {
  7456. "type": "list<double>",
  7457. "value": [
  7458. 816,
  7459. 750
  7460. ]
  7461. },
  7462. "orientation": {
  7463. "type": "double",
  7464. "value": 0
  7465. },
  7466. "scale": {
  7467. "type": "list<double>",
  7468. "value": [
  7469. 1,
  7470. 1
  7471. ]
  7472. },
  7473. "mapper": {
  7474. "type": "code",
  7475. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'position': [getAttr('position')[0], getAttr('position')[1]]})"
  7476. },
  7477. "parser": {
  7478. "type": "code",
  7479. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'position': getAttr('position')})"
  7480. },
  7481. "$contents": {
  7482. "type": "map<string,*>",
  7483. "value": {
  7484. "nodes": {
  7485. "48": {
  7486. "r": {
  7487. "type": "double",
  7488. "value": 7
  7489. },
  7490. "sides": {
  7491. "type": "int",
  7492. "value": 4
  7493. },
  7494. "style": {
  7495. "type": "map<string,string>",
  7496. "value": {
  7497. "stroke": "#000000",
  7498. "stroke-dasharray": "",
  7499. "fill": "purple",
  7500. "fill-opacity": 1,
  7501. "font-size": "20px",
  7502. "stroke-width": 1,
  7503. "arrow-start": "none",
  7504. "arrow-end": "none"
  7505. }
  7506. },
  7507. "mapper": {
  7508. "type": "code",
  7509. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7510. },
  7511. "parser": {
  7512. "type": "code",
  7513. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7514. },
  7515. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Polygon",
  7516. "position": {
  7517. "type": "list<double>",
  7518. "value": [
  7519. 4,
  7520. 1
  7521. ]
  7522. },
  7523. "orientation": {
  7524. "type": "double",
  7525. "value": 0
  7526. },
  7527. "scale": {
  7528. "type": "list<double>",
  7529. "value": [
  7530. 1,
  7531. 1
  7532. ]
  7533. }
  7534. },
  7535. "50": {
  7536. "textContent": {
  7537. "type": "string",
  7538. "value": "p_out"
  7539. },
  7540. "style": {
  7541. "type": "map<string,string>",
  7542. "value": {
  7543. "stroke": "#ffffff",
  7544. "stroke-dasharray": "",
  7545. "fill": "#000000",
  7546. "fill-opacity": 1,
  7547. "font-size": "12px",
  7548. "stroke-width": 0,
  7549. "arrow-start": "none",
  7550. "arrow-end": "none"
  7551. }
  7552. },
  7553. "mapper": {
  7554. "type": "code",
  7555. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  7556. },
  7557. "parser": {
  7558. "type": "code",
  7559. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({'name': getAttr('textContent')})"
  7560. },
  7561. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  7562. "position": {
  7563. "type": "list<double>",
  7564. "value": [
  7565. 4,
  7566. 21
  7567. ]
  7568. },
  7569. "orientation": {
  7570. "type": "double",
  7571. "value": 0
  7572. },
  7573. "scale": {
  7574. "type": "list<double>",
  7575. "value": [
  7576. 1,
  7577. 1
  7578. ]
  7579. }
  7580. }
  7581. },
  7582. "edges": []
  7583. }
  7584. },
  7585. "$asuri": {
  7586. "type": "string",
  7587. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/OutputPort/47.instance"
  7588. },
  7589. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/OutputPortIcon"
  7590. },
  7591. "48": {
  7592. "link-style": {
  7593. "type": "map<string,string>",
  7594. "value": {
  7595. "stroke": "#000000",
  7596. "stroke-dasharray": "",
  7597. "stroke-opacity": 1,
  7598. "stroke-width": 0
  7599. }
  7600. },
  7601. "arrowHead": {
  7602. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  7603. "value": "custom"
  7604. },
  7605. "arrowTail": {
  7606. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  7607. "value": "arrow-black"
  7608. },
  7609. "typename": {
  7610. "type": "string",
  7611. "value": "portsLink"
  7612. },
  7613. "position": {
  7614. "type": "list<double>",
  7615. "value": [
  7616. 1394.149998866213,
  7617. 820.4821429921176
  7618. ]
  7619. },
  7620. "orientation": {
  7621. "type": "double",
  7622. "value": 0
  7623. },
  7624. "scale": {
  7625. "type": "list<double>",
  7626. "value": [
  7627. 1,
  7628. 1
  7629. ]
  7630. },
  7631. "mapper": {
  7632. "type": "code",
  7633. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7634. },
  7635. "parser": {
  7636. "type": "code",
  7637. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7638. },
  7639. "$contents": {
  7640. "type": "map<string,*>",
  7641. "value": {
  7642. "nodes": {},
  7643. "edges": []
  7644. }
  7645. },
  7646. "$asuri": {
  7647. "type": "string",
  7648. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/ports/48.instance"
  7649. },
  7650. "$segments": {
  7651. "type": "map<string,list<string>>",
  7652. "value": {
  7653. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/DevsInstanceIcon/31.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink/48.instance": "M824.0000000000002,728L1394.149998866213,820.4821429921176",
  7654. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink/48.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/OutputPortIcon/47.instance": "M1394.0746427174345,820.4911139622102L828.9992868480729,740.0000848990389"
  7655. }
  7656. },
  7657. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/portsLink"
  7658. },
  7659. "55": {
  7660. "link-style": {
  7661. "type": "map<string,string>",
  7662. "value": {
  7663. "stroke": "#000000",
  7664. "stroke-dasharray": "",
  7665. "stroke-opacity": 0,
  7666. "stroke-width": 0
  7667. }
  7668. },
  7669. "arrowHead": {
  7670. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  7671. "value": "custom"
  7672. },
  7673. "arrowTail": {
  7674. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  7675. "value": "arrow-black"
  7676. },
  7677. "typename": {
  7678. "type": "string",
  7679. "value": "submodelsLink"
  7680. },
  7681. "position": {
  7682. "type": "list<double>",
  7683. "value": [
  7684. 556.5737902585932,
  7685. 690.6318547243715
  7686. ]
  7687. },
  7688. "orientation": {
  7689. "type": "double",
  7690. "value": 0
  7691. },
  7692. "scale": {
  7693. "type": "list<double>",
  7694. "value": [
  7695. 1,
  7696. 1
  7697. ]
  7698. },
  7699. "mapper": {
  7700. "type": "code",
  7701. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7702. },
  7703. "parser": {
  7704. "type": "code",
  7705. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7706. },
  7707. "$contents": {
  7708. "type": "map<string,*>",
  7709. "value": {
  7710. "nodes": {},
  7711. "edges": []
  7712. }
  7713. },
  7714. "$asuri": {
  7715. "type": "string",
  7716. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/submodels/55.instance"
  7717. },
  7718. "$segments": {
  7719. "type": "map<string,list<string>>",
  7720. "value": {
  7721. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/CoupledDEVSIcon/29.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/submodelsLink/55.instance": "M526,636L556.5737902585932,690.6318547243715",
  7722. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/submodelsLink/55.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/DevsInstanceIcon/30.instance": "M556.5735522259118,690.6314293872849L596.9995244453023,730.9991502383269"
  7723. }
  7724. },
  7725. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/submodelsLink"
  7726. },
  7727. "56": {
  7728. "link-style": {
  7729. "type": "map<string,string>",
  7730. "value": {
  7731. "stroke": "#000000",
  7732. "stroke-dasharray": "",
  7733. "stroke-opacity": 0,
  7734. "stroke-width": 0
  7735. }
  7736. },
  7737. "arrowHead": {
  7738. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  7739. "value": "custom"
  7740. },
  7741. "arrowTail": {
  7742. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  7743. "value": "arrow-black"
  7744. },
  7745. "typename": {
  7746. "type": "string",
  7747. "value": "submodelsLink"
  7748. },
  7749. "position": {
  7750. "type": "list<double>",
  7751. "value": [
  7752. 659.6381034263807,
  7753. 693.5594827491902
  7754. ]
  7755. },
  7756. "orientation": {
  7757. "type": "double",
  7758. "value": 0
  7759. },
  7760. "scale": {
  7761. "type": "list<double>",
  7762. "value": [
  7763. 1,
  7764. 1
  7765. ]
  7766. },
  7767. "mapper": {
  7768. "type": "code",
  7769. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7770. },
  7771. "parser": {
  7772. "type": "code",
  7773. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7774. },
  7775. "$contents": {
  7776. "type": "map<string,*>",
  7777. "value": {
  7778. "nodes": {},
  7779. "edges": []
  7780. }
  7781. },
  7782. "$asuri": {
  7783. "type": "string",
  7784. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/submodels/56.instance"
  7785. },
  7786. "$segments": {
  7787. "type": "map<string,list<string>>",
  7788. "value": {
  7789. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/CoupledDEVSIcon/29.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/submodelsLink/56.instance": "M526,636L659.6381034263807,693.5594827491902",
  7790. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/submodelsLink/56.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/DevsInstanceIcon/31.instance": "M659.5687659901625,693.5296183103696L771.9991433973512,730.9996310512936"
  7791. }
  7792. },
  7793. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/submodelsLink"
  7794. },
  7795. "57": {
  7796. "link-style": {
  7797. "type": "map<string,string>",
  7798. "value": {
  7799. "stroke": "#000000",
  7800. "stroke-dasharray": "",
  7801. "stroke-opacity": 0,
  7802. "stroke-width": 0
  7803. }
  7804. },
  7805. "arrowHead": {
  7806. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  7807. "value": "custom"
  7808. },
  7809. "arrowTail": {
  7810. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  7811. "value": "arrow-black"
  7812. },
  7813. "typename": {
  7814. "type": "string",
  7815. "value": "submodelsLink"
  7816. },
  7817. "position": {
  7818. "type": "list<double>",
  7819. "value": [
  7820. 737.1448512484678,
  7821. 694.5401601802623
  7822. ]
  7823. },
  7824. "orientation": {
  7825. "type": "double",
  7826. "value": 0
  7827. },
  7828. "scale": {
  7829. "type": "list<double>",
  7830. "value": [
  7831. 1,
  7832. 1
  7833. ]
  7834. },
  7835. "mapper": {
  7836. "type": "code",
  7837. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7838. },
  7839. "parser": {
  7840. "type": "code",
  7841. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7842. },
  7843. "$contents": {
  7844. "type": "map<string,*>",
  7845. "value": {
  7846. "nodes": {},
  7847. "edges": []
  7848. }
  7849. },
  7850. "$asuri": {
  7851. "type": "string",
  7852. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/submodels/57.instance"
  7853. },
  7854. "$segments": {
  7855. "type": "map<string,list<string>>",
  7856. "value": {
  7857. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/CoupledDEVSIcon/29.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/submodelsLink/57.instance": "M526,636L737.1448512484678,694.5401601802623",
  7858. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/submodelsLink/57.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/DevsInstanceIcon/32.instance": "M737.0722267475901,694.520024951346L946.9994036317228,730.9998346561885"
  7859. }
  7860. },
  7861. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/submodelsLink"
  7862. },
  7863. "58": {
  7864. "link-style": {
  7865. "type": "map<string,string>",
  7866. "value": {
  7867. "stroke": "#000000",
  7868. "stroke-dasharray": "- ",
  7869. "stroke-opacity": 1,
  7870. "stroke-width": 2
  7871. }
  7872. },
  7873. "arrowHead": {
  7874. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  7875. "value": "custom"
  7876. },
  7877. "arrowTail": {
  7878. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  7879. "value": "arrow-black"
  7880. },
  7881. "typename": {
  7882. "type": "string",
  7883. "value": "channelLink"
  7884. },
  7885. "position": {
  7886. "type": "list<double>",
  7887. "value": [
  7888. 688.5,
  7889. 757
  7890. ]
  7891. },
  7892. "orientation": {
  7893. "type": "double",
  7894. "value": 0
  7895. },
  7896. "scale": {
  7897. "type": "list<double>",
  7898. "value": [
  7899. 1,
  7900. 1
  7901. ]
  7902. },
  7903. "mapper": {
  7904. "type": "code",
  7905. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7906. },
  7907. "parser": {
  7908. "type": "code",
  7909. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7910. },
  7911. "$contents": {
  7912. "type": "map<string,*>",
  7913. "value": {
  7914. "nodes": {
  7915. "267": {
  7916. "segments": {
  7917. "type": "string",
  7918. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  7919. },
  7920. "style": {
  7921. "type": "map<string,string>",
  7922. "value": {
  7923. "stroke": "#000000",
  7924. "fill": "#000000",
  7925. "opacity": 1,
  7926. "stroke-width": 1
  7927. }
  7928. },
  7929. "mapper": {
  7930. "type": "code",
  7931. "value": ""
  7932. },
  7933. "parser": {
  7934. "type": "code",
  7935. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7936. },
  7937. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7938. "position": {
  7939. "type": "list<double>",
  7940. "value": [
  7941. "0;34.499565637471164,100%",
  7942. "0;-4,0%"
  7943. ]
  7944. },
  7945. "orientation": {
  7946. "type": "double",
  7947. "value": "0;0"
  7948. },
  7949. "scale": {
  7950. "type": "list<double>",
  7951. "value": [
  7952. 1,
  7953. 1
  7954. ]
  7955. },
  7956. "$linkDecoratorInfo": {
  7957. "type": "map<string,double>",
  7958. "value": {
  7959. "xratio": 1,
  7960. "yoffset": -4
  7961. }
  7962. }
  7963. }
  7964. },
  7965. "edges": []
  7966. }
  7967. },
  7968. "$asuri": {
  7969. "type": "string",
  7970. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/channel/58.instance"
  7971. },
  7972. "$segments": {
  7973. "type": "map<string,list<string>>",
  7974. "value": {
  7975. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/OutputPortIcon/45.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/channelLink/58.instance": "M654,757L688.5,757",
  7976. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/channelLink/58.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/InputPortIcon/42.instance": "M688.5769852373264,756.9999999999999L722.9995656374712,757"
  7977. }
  7978. },
  7979. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/channelLink"
  7980. },
  7981. "59": {
  7982. "link-style": {
  7983. "type": "map<string,string>",
  7984. "value": {
  7985. "stroke": "#000000",
  7986. "stroke-dasharray": "- ",
  7987. "stroke-opacity": 1,
  7988. "stroke-width": 2
  7989. }
  7990. },
  7991. "arrowHead": {
  7992. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  7993. "value": "custom"
  7994. },
  7995. "arrowTail": {
  7996. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  7997. "value": "arrow-black"
  7998. },
  7999. "typename": {
  8000. "type": "string",
  8001. "value": "channelLink"
  8002. },
  8003. "position": {
  8004. "type": "list<double>",
  8005. "value": [
  8006. 861,
  8007. 757
  8008. ]
  8009. },
  8010. "orientation": {
  8011. "type": "double",
  8012. "value": 0
  8013. },
  8014. "scale": {
  8015. "type": "list<double>",
  8016. "value": [
  8017. 1,
  8018. 1
  8019. ]
  8020. },
  8021. "mapper": {
  8022. "type": "code",
  8023. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8024. },
  8025. "parser": {
  8026. "type": "code",
  8027. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8028. },
  8029. "$contents": {
  8030. "type": "map<string,*>",
  8031. "value": {
  8032. "nodes": {
  8033. "267": {
  8034. "segments": {
  8035. "type": "string",
  8036. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  8037. },
  8038. "style": {
  8039. "type": "map<string,string>",
  8040. "value": {
  8041. "stroke": "#000000",
  8042. "fill": "#000000",
  8043. "opacity": 1,
  8044. "stroke-width": 1
  8045. }
  8046. },
  8047. "mapper": {
  8048. "type": "code",
  8049. "value": ""
  8050. },
  8051. "parser": {
  8052. "type": "code",
  8053. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8054. },
  8055. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8056. "position": {
  8057. "type": "list<double>",
  8058. "value": [
  8059. "0;32.99954591368214,100%",
  8060. "0;-4,0%"
  8061. ]
  8062. },
  8063. "orientation": {
  8064. "type": "double",
  8065. "value": "0;0"
  8066. },
  8067. "scale": {
  8068. "type": "list<double>",
  8069. "value": [
  8070. 1,
  8071. 1
  8072. ]
  8073. },
  8074. "$linkDecoratorInfo": {
  8075. "type": "map<string,double>",
  8076. "value": {
  8077. "xratio": 1,
  8078. "yoffset": -4
  8079. }
  8080. }
  8081. }
  8082. },
  8083. "edges": []
  8084. }
  8085. },
  8086. "$asuri": {
  8087. "type": "string",
  8088. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/channel/59.instance"
  8089. },
  8090. "$segments": {
  8091. "type": "map<string,list<string>>",
  8092. "value": {
  8093. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/OutputPortIcon/47.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/channelLink/59.instance": "M828,757L861,757",
  8094. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/channelLink/59.instance--/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/InputPortIcon/41.instance": "M861.0770768607836,757L893.9995459136821,757"
  8095. }
  8096. },
  8097. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/channelLink"
  8098. },
  8099. "60": {
  8100. "typename": {
  8101. "type": "string",
  8102. "value": "SimulationIcon"
  8103. },
  8104. "position": {
  8105. "type": "list<double>",
  8106. "value": [
  8107. 20,
  8108. 275
  8109. ]
  8110. },
  8111. "orientation": {
  8112. "type": "double",
  8113. "value": 0
  8114. },
  8115. "scale": {
  8116. "type": "list<double>",
  8117. "value": [
  8118. 1,
  8119. 1
  8120. ]
  8121. },
  8122. "mapper": {
  8123. "type": "code",
  8124. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8125. },
  8126. "parser": {
  8127. "type": "code",
  8128. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8129. },
  8130. "$contents": {
  8131. "type": "map<string,*>",
  8132. "value": {
  8133. "nodes": {
  8134. "65": {
  8135. "width": {
  8136. "type": "double",
  8137. "value": 200
  8138. },
  8139. "height": {
  8140. "type": "double",
  8141. "value": 50
  8142. },
  8143. "cornerRadius": {
  8144. "type": "double",
  8145. "value": 0
  8146. },
  8147. "style": {
  8148. "type": "map<string,string>",
  8149. "value": {
  8150. "stroke": "#000000",
  8151. "stroke-dasharray": "",
  8152. "fill": "#2BAFD4",
  8153. "fill-opacity": 0.5,
  8154. "font-size": "20px",
  8155. "stroke-width": 3,
  8156. "arrow-start": "none",
  8157. "arrow-end": "none"
  8158. }
  8159. },
  8160. "mapper": {
  8161. "type": "code",
  8162. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8163. },
  8164. "parser": {
  8165. "type": "code",
  8166. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8167. },
  8168. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  8169. "position": {
  8170. "type": "list<double>",
  8171. "value": [
  8172. 6,
  8173. 5
  8174. ]
  8175. },
  8176. "orientation": {
  8177. "type": "double",
  8178. "value": 0
  8179. },
  8180. "scale": {
  8181. "type": "list<double>",
  8182. "value": [
  8183. 1,
  8184. 1
  8185. ]
  8186. }
  8187. },
  8188. "69": {
  8189. "textContent": {
  8190. "type": "string",
  8191. "value": "return time >= 300"
  8192. },
  8193. "style": {
  8194. "type": "map<string,string>",
  8195. "value": {
  8196. "stroke": "#ffffff",
  8197. "stroke-dasharray": "",
  8198. "fill": "#000000",
  8199. "fill-opacity": 1,
  8200. "font-size": "12px",
  8201. "stroke-width": 0,
  8202. "arrow-start": "none",
  8203. "arrow-end": "none"
  8204. }
  8205. },
  8206. "mapper": {
  8207. "type": "code",
  8208. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar splitted = getAttr('end_condition').split('\\n'),\n textContent = \"\";\nif (splitted.length > 1) {\n textContent = \"...\\n\" + splitted[splitted.length - 1];\n} else if (splitted.length == 1) {\n textContent = splitted[0];\n}\n({'textContent': textContent})"
  8209. },
  8210. "parser": {
  8211. "type": "code",
  8212. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8213. },
  8214. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  8215. "position": {
  8216. "type": "list<double>",
  8217. "value": [
  8218. 13,
  8219. 13
  8220. ]
  8221. },
  8222. "orientation": {
  8223. "type": "double",
  8224. "value": 0
  8225. },
  8226. "scale": {
  8227. "type": "list<double>",
  8228. "value": [
  8229. 1,
  8230. 1
  8231. ]
  8232. }
  8233. },
  8234. "72": {
  8235. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8236. "position": {
  8237. "type": "list<double>",
  8238. "value": [
  8239. 21.31768296950213,
  8240. 13.063635584495046
  8241. ]
  8242. },
  8243. "orientation": {
  8244. "type": "double",
  8245. "value": 0
  8246. },
  8247. "scale": {
  8248. "type": "list<double>",
  8249. "value": [
  8250. 1,
  8251. 1
  8252. ]
  8253. },
  8254. "link-style": {
  8255. "type": "map<string,string>",
  8256. "value": {
  8257. "stroke": "#00ffff",
  8258. "stroke-dasharray": "",
  8259. "stroke-opacity": 0.1,
  8260. "stroke-width": 1
  8261. }
  8262. }
  8263. }
  8264. },
  8265. "edges": [
  8266. {
  8267. "src": "65",
  8268. "dest": "72"
  8269. },
  8270. {
  8271. "src": "72",
  8272. "dest": "69"
  8273. }
  8274. ]
  8275. }
  8276. },
  8277. "$asuri": {
  8278. "type": "string",
  8279. "value": "/Formalisms/ParallelDEVS/ParallelDEVS/Simulation/60.instance"
  8280. },
  8281. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons/SimulationIcon"
  8282. }
  8283. },
  8284. "edges": [],
  8285. "metamodels": [
  8286. "/Formalisms/ParallelDEVS/ParallelDEVS.defaultIcons"
  8287. ]
  8288. },
  8289. "asm": {
  8290. "nodes": {
  8291. "0": {
  8292. "name": {
  8293. "type": "string",
  8294. "value": "Generator"
  8295. },
  8296. "attributes": {
  8297. "type": "list<$ATTRIBUTE>",
  8298. "value": []
  8299. },
  8300. "parameters": {
  8301. "type": "list<$ARG>",
  8302. "value": []
  8303. },
  8304. "__init__": {
  8305. "type": "code",
  8306. "value": ""
  8307. },
  8308. "position": {
  8309. "type": "list<int>",
  8310. "value": [
  8311. 241.77214216000004,
  8312. 300.54982484
  8313. ]
  8314. },
  8315. "scale": {
  8316. "type": "list<int>",
  8317. "value": [
  8318. 1.2457673698684366,
  8319. 0.72046788
  8320. ]
  8321. },
  8322. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/AtomicDEVS"
  8323. },
  8324. "1": {
  8325. "name": {
  8326. "type": "string",
  8327. "value": "generating"
  8328. },
  8329. "initial": {
  8330. "type": "bool",
  8331. "value": true
  8332. },
  8333. "time_advance": {
  8334. "type": "code",
  8335. "value": "return 1.0"
  8336. },
  8337. "output": {
  8338. "type": "code",
  8339. "value": "import random\nduration = random.uniform(0, 1.1)\nreturn {'p_out': [Task(duration)]}"
  8340. },
  8341. "position": {
  8342. "type": "list<int>",
  8343. "value": [
  8344. 267,
  8345. 361
  8346. ]
  8347. },
  8348. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/State"
  8349. },
  8350. "2": {
  8351. "name": {
  8352. "type": "string",
  8353. "value": "GeneratorState"
  8354. },
  8355. "attributes": {
  8356. "type": "list<$ATTRIBUTE>",
  8357. "value": [
  8358. {
  8359. "name": "nr_of_tasks",
  8360. "type": "int",
  8361. "default": 0
  8362. }
  8363. ]
  8364. },
  8365. "parameters": {
  8366. "type": "list<$ARG>",
  8367. "value": [
  8368. {
  8369. "name": "nr_of_tasks",
  8370. "type": "int"
  8371. }
  8372. ]
  8373. },
  8374. "initial_binding": {
  8375. "type": "list<map<[name,val],[string,string]>>",
  8376. "value": [
  8377. {
  8378. "name": "nr_of_tasks",
  8379. "val": 0
  8380. }
  8381. ]
  8382. },
  8383. "__init__": {
  8384. "type": "code",
  8385. "value": ""
  8386. },
  8387. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/StateDefinition"
  8388. },
  8389. "5": {
  8390. "condition": {
  8391. "type": "code",
  8392. "value": ""
  8393. },
  8394. "action": {
  8395. "type": "code",
  8396. "value": "return {\"nr_of_tasks\": self.state.nr_of_tasks + 1}"
  8397. },
  8398. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/InternalTransition"
  8399. },
  8400. "7": {
  8401. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/states"
  8402. },
  8403. "8": {
  8404. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/statedef"
  8405. },
  8406. "9": {
  8407. "name": {
  8408. "type": "string",
  8409. "value": "Processor"
  8410. },
  8411. "attributes": {
  8412. "type": "list<$ATTRIBUTE>",
  8413. "value": []
  8414. },
  8415. "parameters": {
  8416. "type": "list<$ARG>",
  8417. "value": []
  8418. },
  8419. "__init__": {
  8420. "type": "code",
  8421. "value": ""
  8422. },
  8423. "position": {
  8424. "type": "list<int>",
  8425. "value": [
  8426. 658.9152,
  8427. 298
  8428. ]
  8429. },
  8430. "scale": {
  8431. "type": "list<int>",
  8432. "value": [
  8433. 2.2159999999999997,
  8434. 1
  8435. ]
  8436. },
  8437. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/AtomicDEVS"
  8438. },
  8439. "10": {
  8440. "name": {
  8441. "type": "string",
  8442. "value": "idle"
  8443. },
  8444. "initial": {
  8445. "type": "bool",
  8446. "value": true
  8447. },
  8448. "time_advance": {
  8449. "type": "code",
  8450. "value": "return INFINITY"
  8451. },
  8452. "output": {
  8453. "type": "code",
  8454. "value": ""
  8455. },
  8456. "position": {
  8457. "type": "list<int>",
  8458. "value": [
  8459. 676,
  8460. 449
  8461. ]
  8462. },
  8463. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/State"
  8464. },
  8465. "11": {
  8466. "name": {
  8467. "type": "string",
  8468. "value": "processing"
  8469. },
  8470. "initial": {
  8471. "type": "bool",
  8472. "value": false
  8473. },
  8474. "time_advance": {
  8475. "type": "code",
  8476. "value": "return self.state.current_task.duration"
  8477. },
  8478. "output": {
  8479. "type": "code",
  8480. "value": "return {'p_out': [self.state.current_task]}"
  8481. },
  8482. "position": {
  8483. "type": "list<int>",
  8484. "value": [
  8485. 926,
  8486. 449
  8487. ]
  8488. },
  8489. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/State"
  8490. },
  8491. "13": {
  8492. "name": {
  8493. "type": "string",
  8494. "value": "Task"
  8495. },
  8496. "attributes": {
  8497. "type": "list<$ATTRIBUTE>",
  8498. "value": [
  8499. {
  8500. "name": "duration",
  8501. "type": "float",
  8502. "default": 0
  8503. }
  8504. ]
  8505. },
  8506. "parameters": {
  8507. "type": "list<$ARG>",
  8508. "value": [
  8509. {
  8510. "name": "duration",
  8511. "type": "float"
  8512. }
  8513. ]
  8514. },
  8515. "__init__": {
  8516. "type": "code",
  8517. "value": ""
  8518. },
  8519. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/Event"
  8520. },
  8521. "14": {
  8522. "name": {
  8523. "type": "string",
  8524. "value": "ProcessorState"
  8525. },
  8526. "attributes": {
  8527. "type": "list<$ATTRIBUTE>",
  8528. "value": [
  8529. {
  8530. "name": "queue",
  8531. "type": "list<Task>",
  8532. "default": []
  8533. },
  8534. {
  8535. "name": "current_task",
  8536. "type": "Task",
  8537. "default": ""
  8538. }
  8539. ]
  8540. },
  8541. "parameters": {
  8542. "type": "list<$ARG>",
  8543. "value": [
  8544. {
  8545. "name": "queue",
  8546. "type": "list<Task>"
  8547. },
  8548. {
  8549. "name": "current_task",
  8550. "type": "Task"
  8551. }
  8552. ]
  8553. },
  8554. "initial_binding": {
  8555. "type": "list<map<[name,val],[string,string]>>",
  8556. "value": [
  8557. {
  8558. "name": "queue",
  8559. "val": "[]"
  8560. }
  8561. ]
  8562. },
  8563. "__init__": {
  8564. "type": "code",
  8565. "value": ""
  8566. },
  8567. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/StateDefinition"
  8568. },
  8569. "15": {
  8570. "condition": {
  8571. "type": "code",
  8572. "value": ""
  8573. },
  8574. "action": {
  8575. "type": "code",
  8576. "value": "return {\"current_task\": inputs['p_in'][0], \"queue\": self.state.queue}\n# set current task"
  8577. },
  8578. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/ExternalTransition"
  8579. },
  8580. "16": {
  8581. "condition": {
  8582. "type": "code",
  8583. "value": "return not self.state.queue"
  8584. },
  8585. "action": {
  8586. "type": "code",
  8587. "value": "return {\"current_task\": None, \"queue\": []}\n# clear state"
  8588. },
  8589. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/InternalTransition"
  8590. },
  8591. "17": {
  8592. "condition": {
  8593. "type": "code",
  8594. "value": "return self.state.queue"
  8595. },
  8596. "action": {
  8597. "type": "code",
  8598. "value": "return {'current_task': self.state.queue.pop(0), \"queue\": self.state.queue}\n# pop current task"
  8599. },
  8600. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/InternalTransition"
  8601. },
  8602. "18": {
  8603. "condition": {
  8604. "type": "code",
  8605. "value": ""
  8606. },
  8607. "action": {
  8608. "type": "code",
  8609. "value": "return {\"queue\": self.state.queue + [inputs['p_in'][0]], \"current_task\": self.state.current_task}\n# append to queue"
  8610. },
  8611. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/ExternalTransition"
  8612. },
  8613. "19": {
  8614. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/states"
  8615. },
  8616. "20": {
  8617. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/states"
  8618. },
  8619. "21": {
  8620. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/statedef"
  8621. },
  8622. "22": {
  8623. "name": {
  8624. "type": "string",
  8625. "value": "Collector"
  8626. },
  8627. "attributes": {
  8628. "type": "list<$ATTRIBUTE>",
  8629. "value": []
  8630. },
  8631. "parameters": {
  8632. "type": "list<$ARG>",
  8633. "value": []
  8634. },
  8635. "__init__": {
  8636. "type": "code",
  8637. "value": ""
  8638. },
  8639. "position": {
  8640. "type": "list<int>",
  8641. "value": [
  8642. 1265.232,
  8643. 300.1119
  8644. ]
  8645. },
  8646. "scale": {
  8647. "type": "list<int>",
  8648. "value": [
  8649. 1.2110720000000004,
  8650. 0.6983
  8651. ]
  8652. },
  8653. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/AtomicDEVS"
  8654. },
  8655. "23": {
  8656. "name": {
  8657. "type": "string",
  8658. "value": "CollectorState"
  8659. },
  8660. "attributes": {
  8661. "type": "list<$ATTRIBUTE>",
  8662. "value": [
  8663. {
  8664. "name": "nr_of_tasks",
  8665. "type": "int",
  8666. "default": 0
  8667. }
  8668. ]
  8669. },
  8670. "parameters": {
  8671. "type": "list<$ARG>",
  8672. "value": [
  8673. {
  8674. "name": "nr_of_tasks",
  8675. "type": "int"
  8676. }
  8677. ]
  8678. },
  8679. "initial_binding": {
  8680. "type": "list<map<[name,val],[string,string]>>",
  8681. "value": [
  8682. {
  8683. "name": "nr_of_tasks",
  8684. "val": 0
  8685. }
  8686. ]
  8687. },
  8688. "__init__": {
  8689. "type": "code",
  8690. "value": ""
  8691. },
  8692. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/StateDefinition"
  8693. },
  8694. "24": {
  8695. "name": {
  8696. "type": "string",
  8697. "value": "collecting"
  8698. },
  8699. "initial": {
  8700. "type": "bool",
  8701. "value": true
  8702. },
  8703. "time_advance": {
  8704. "type": "code",
  8705. "value": "return INFINITY"
  8706. },
  8707. "output": {
  8708. "type": "code",
  8709. "value": ""
  8710. },
  8711. "position": {
  8712. "type": "list<int>",
  8713. "value": [
  8714. 1284,
  8715. 345
  8716. ]
  8717. },
  8718. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/State"
  8719. },
  8720. "26": {
  8721. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/statedef"
  8722. },
  8723. "27": {
  8724. "condition": {
  8725. "type": "code",
  8726. "value": ""
  8727. },
  8728. "action": {
  8729. "type": "code",
  8730. "value": "return {\"nr_of_tasks\": self.state.nr_of_tasks + 1}"
  8731. },
  8732. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/ExternalTransition"
  8733. },
  8734. "28": {
  8735. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/states"
  8736. },
  8737. "29": {
  8738. "name": {
  8739. "type": "string",
  8740. "value": "Root"
  8741. },
  8742. "attributes": {
  8743. "type": "list<$ATTRIBUTE>",
  8744. "value": []
  8745. },
  8746. "parameters": {
  8747. "type": "list<$ARG>",
  8748. "value": []
  8749. },
  8750. "__init__": {
  8751. "type": "code",
  8752. "value": ""
  8753. },
  8754. "position": {
  8755. "type": "list<int>",
  8756. "value": [
  8757. 510.1608,
  8758. 630.5834
  8759. ]
  8760. },
  8761. "scale": {
  8762. "type": "list<int>",
  8763. "value": [
  8764. 1.9799,
  8765. 0.7738
  8766. ]
  8767. },
  8768. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/CoupledDEVS"
  8769. },
  8770. "30": {
  8771. "name": {
  8772. "type": "string",
  8773. "value": "g"
  8774. },
  8775. "devs_type": {
  8776. "type": "string",
  8777. "value": "Generator"
  8778. },
  8779. "parameter_binding": {
  8780. "type": "list<map<[name,val],[string,string]>>",
  8781. "value": []
  8782. },
  8783. "position": {
  8784. "type": "list<int>",
  8785. "value": [
  8786. 544,
  8787. 701
  8788. ]
  8789. },
  8790. "scale": {
  8791. "type": "list<int>",
  8792. "value": [
  8793. 1,
  8794. 1
  8795. ]
  8796. },
  8797. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/DevsInstance"
  8798. },
  8799. "31": {
  8800. "name": {
  8801. "type": "string",
  8802. "value": "p"
  8803. },
  8804. "devs_type": {
  8805. "type": "string",
  8806. "value": "Processor"
  8807. },
  8808. "parameter_binding": {
  8809. "type": "list<map<[name,val],[string,string]>>",
  8810. "value": []
  8811. },
  8812. "position": {
  8813. "type": "list<int>",
  8814. "value": [
  8815. 719,
  8816. 701
  8817. ]
  8818. },
  8819. "scale": {
  8820. "type": "list<int>",
  8821. "value": [
  8822. 1,
  8823. 1
  8824. ]
  8825. },
  8826. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/DevsInstance"
  8827. },
  8828. "32": {
  8829. "name": {
  8830. "type": "string",
  8831. "value": "c"
  8832. },
  8833. "devs_type": {
  8834. "type": "string",
  8835. "value": "Collector"
  8836. },
  8837. "parameter_binding": {
  8838. "type": "list<map<[name,val],[string,string]>>",
  8839. "value": []
  8840. },
  8841. "position": {
  8842. "type": "list<int>",
  8843. "value": [
  8844. 894,
  8845. 701
  8846. ]
  8847. },
  8848. "scale": {
  8849. "type": "list<int>",
  8850. "value": [
  8851. 1,
  8852. 1
  8853. ]
  8854. },
  8855. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/DevsInstance"
  8856. },
  8857. "33": {
  8858. "name": {
  8859. "type": "string",
  8860. "value": "p_out"
  8861. },
  8862. "position": {
  8863. "type": "list<int>",
  8864. "value": [
  8865. 549.1705135475434,
  8866. 393.20796368611167
  8867. ]
  8868. },
  8869. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/OutputPort"
  8870. },
  8871. "34": {
  8872. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/ports"
  8873. },
  8874. "35": {
  8875. "name": {
  8876. "type": "string",
  8877. "value": "p_out"
  8878. },
  8879. "position": {
  8880. "type": "list<int>",
  8881. "value": [
  8882. 1221.5725439999999,
  8883. 396
  8884. ]
  8885. },
  8886. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/OutputPort"
  8887. },
  8888. "36": {
  8889. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/ports"
  8890. },
  8891. "37": {
  8892. "name": {
  8893. "type": "string",
  8894. "value": "p_in"
  8895. },
  8896. "position": {
  8897. "type": "list<int>",
  8898. "value": [
  8899. 665.572544,
  8900. 393
  8901. ]
  8902. },
  8903. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/InputPort"
  8904. },
  8905. "38": {
  8906. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/ports"
  8907. },
  8908. "39": {
  8909. "name": {
  8910. "type": "string",
  8911. "value": "p_in"
  8912. },
  8913. "position": {
  8914. "type": "list<int>",
  8915. "value": [
  8916. 1264.3431606108159,
  8917. 343.86722289
  8918. ]
  8919. },
  8920. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/InputPort"
  8921. },
  8922. "40": {
  8923. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/ports"
  8924. },
  8925. "41": {
  8926. "name": {
  8927. "type": "string",
  8928. "value": "p_in"
  8929. },
  8930. "position": {
  8931. "type": "list<int>",
  8932. "value": [
  8933. 887,
  8934. 749
  8935. ]
  8936. },
  8937. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/InputPort"
  8938. },
  8939. "42": {
  8940. "name": {
  8941. "type": "string",
  8942. "value": "p_in"
  8943. },
  8944. "position": {
  8945. "type": "list<int>",
  8946. "value": [
  8947. 716,
  8948. 750
  8949. ]
  8950. },
  8951. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/InputPort"
  8952. },
  8953. "43": {
  8954. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/ports"
  8955. },
  8956. "44": {
  8957. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/ports"
  8958. },
  8959. "45": {
  8960. "name": {
  8961. "type": "string",
  8962. "value": "p_out"
  8963. },
  8964. "position": {
  8965. "type": "list<int>",
  8966. "value": [
  8967. 641,
  8968. 750
  8969. ]
  8970. },
  8971. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/OutputPort"
  8972. },
  8973. "46": {
  8974. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/ports"
  8975. },
  8976. "47": {
  8977. "name": {
  8978. "type": "string",
  8979. "value": "p_out"
  8980. },
  8981. "position": {
  8982. "type": "list<int>",
  8983. "value": [
  8984. 816,
  8985. 750
  8986. ]
  8987. },
  8988. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/OutputPort"
  8989. },
  8990. "48": {
  8991. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/ports"
  8992. },
  8993. "55": {
  8994. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/submodels"
  8995. },
  8996. "56": {
  8997. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/submodels"
  8998. },
  8999. "57": {
  9000. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/submodels"
  9001. },
  9002. "58": {
  9003. "transfer_function": {
  9004. "type": "code",
  9005. "value": ""
  9006. },
  9007. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/channel"
  9008. },
  9009. "59": {
  9010. "transfer_function": {
  9011. "type": "code",
  9012. "value": ""
  9013. },
  9014. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/channel"
  9015. },
  9016. "60": {
  9017. "end_condition": {
  9018. "type": "code",
  9019. "value": "return time >= 300"
  9020. },
  9021. "$type": "/Formalisms/ParallelDEVS/ParallelDEVS/Simulation"
  9022. }
  9023. },
  9024. "edges": [
  9025. {
  9026. "src": "1",
  9027. "dest": "5"
  9028. },
  9029. {
  9030. "src": "5",
  9031. "dest": "1"
  9032. },
  9033. {
  9034. "src": "0",
  9035. "dest": "7"
  9036. },
  9037. {
  9038. "src": "7",
  9039. "dest": "1"
  9040. },
  9041. {
  9042. "src": "0",
  9043. "dest": "8"
  9044. },
  9045. {
  9046. "src": "8",
  9047. "dest": "2"
  9048. },
  9049. {
  9050. "src": "10",
  9051. "dest": "15"
  9052. },
  9053. {
  9054. "src": "15",
  9055. "dest": "11"
  9056. },
  9057. {
  9058. "src": "11",
  9059. "dest": "16"
  9060. },
  9061. {
  9062. "src": "16",
  9063. "dest": "10"
  9064. },
  9065. {
  9066. "src": "11",
  9067. "dest": "17"
  9068. },
  9069. {
  9070. "src": "17",
  9071. "dest": "11"
  9072. },
  9073. {
  9074. "src": "11",
  9075. "dest": "18"
  9076. },
  9077. {
  9078. "src": "18",
  9079. "dest": "11"
  9080. },
  9081. {
  9082. "src": "9",
  9083. "dest": "19"
  9084. },
  9085. {
  9086. "src": "19",
  9087. "dest": "10"
  9088. },
  9089. {
  9090. "src": "9",
  9091. "dest": "20"
  9092. },
  9093. {
  9094. "src": "20",
  9095. "dest": "11"
  9096. },
  9097. {
  9098. "src": "9",
  9099. "dest": "21"
  9100. },
  9101. {
  9102. "src": "21",
  9103. "dest": "14"
  9104. },
  9105. {
  9106. "src": "22",
  9107. "dest": "26"
  9108. },
  9109. {
  9110. "src": "26",
  9111. "dest": "23"
  9112. },
  9113. {
  9114. "src": "24",
  9115. "dest": "27"
  9116. },
  9117. {
  9118. "src": "27",
  9119. "dest": "24"
  9120. },
  9121. {
  9122. "src": "22",
  9123. "dest": "28"
  9124. },
  9125. {
  9126. "src": "28",
  9127. "dest": "24"
  9128. },
  9129. {
  9130. "src": "0",
  9131. "dest": "34"
  9132. },
  9133. {
  9134. "src": "34",
  9135. "dest": "33"
  9136. },
  9137. {
  9138. "src": "9",
  9139. "dest": "36"
  9140. },
  9141. {
  9142. "src": "36",
  9143. "dest": "35"
  9144. },
  9145. {
  9146. "src": "9",
  9147. "dest": "38"
  9148. },
  9149. {
  9150. "src": "38",
  9151. "dest": "37"
  9152. },
  9153. {
  9154. "src": "22",
  9155. "dest": "40"
  9156. },
  9157. {
  9158. "src": "40",
  9159. "dest": "39"
  9160. },
  9161. {
  9162. "src": "31",
  9163. "dest": "43"
  9164. },
  9165. {
  9166. "src": "43",
  9167. "dest": "42"
  9168. },
  9169. {
  9170. "src": "32",
  9171. "dest": "44"
  9172. },
  9173. {
  9174. "src": "44",
  9175. "dest": "41"
  9176. },
  9177. {
  9178. "src": "30",
  9179. "dest": "46"
  9180. },
  9181. {
  9182. "src": "46",
  9183. "dest": "45"
  9184. },
  9185. {
  9186. "src": "31",
  9187. "dest": "48"
  9188. },
  9189. {
  9190. "src": "48",
  9191. "dest": "47"
  9192. },
  9193. {
  9194. "src": "29",
  9195. "dest": "55"
  9196. },
  9197. {
  9198. "src": "55",
  9199. "dest": "30"
  9200. },
  9201. {
  9202. "src": "29",
  9203. "dest": "56"
  9204. },
  9205. {
  9206. "src": "56",
  9207. "dest": "31"
  9208. },
  9209. {
  9210. "src": "29",
  9211. "dest": "57"
  9212. },
  9213. {
  9214. "src": "57",
  9215. "dest": "32"
  9216. },
  9217. {
  9218. "src": "45",
  9219. "dest": "58"
  9220. },
  9221. {
  9222. "src": "58",
  9223. "dest": "42"
  9224. },
  9225. {
  9226. "src": "47",
  9227. "dest": "59"
  9228. },
  9229. {
  9230. "src": "59",
  9231. "dest": "41"
  9232. }
  9233. ],
  9234. "metamodels": [
  9235. "/Formalisms/ParallelDEVS/ParallelDEVS"
  9236. ]
  9237. }
  9238. }