-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvenue_index.txt
10436 lines (10436 loc) · 244 KB
/
venue_index.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
9829 10thAnniversaryColloquiumofUNU/IIST
9430 15.WLP
9834 1999ACMSIGMODWorkshoponResearchIssuesinDataMiningandKnowledgeDiscovery
8965 25YearsCSP
5247 25YearsCommunicatingSequentialProcesses
9402 25YearsGULP
2641 25YearsISCA
3453 25YearsofModelChecking
9286 25thAnniversaryofINRIA
7160 35YearsofFuzzySetTheory
9540 3D-GIS
2060 3DIC
3677 3DIM
5715 3DIMPVT
4883 3DOR
9639 3DPH
9012 3DPVT
8364 3DResearchChallengesinCulturalHeritage
5909 3DTV-Conference
801 3DUI
3673 3DV
8342 3GSE
3670 3PGCIC
3775 40JahreInformatik@Braunschweig
1410 4OR
5449 50YearsofArtificialIntelligence
8904 50YearsofIntegerProgramming
3683 5GU
9248 8thInternationalConferenceonNetworkedComputingandAdvancedInformationManagement,24-26,2012,Seoul,Korea
4781 A-MOST
5947 A-TEST@SIGSOFTFSE
2978 A2CWiC
9917 A4Cloud
3964 AAA-IDEA
562 AAAI
1622 AAAI/IAAI
1634 AAAI/IAAI,Vol.1
1620 AAAI/IAAI,Vol.2
6588 AAAIFallSymposium
6918 AAAIMobileRobotCompetition
1756 AAAISpringSymposium
1621 AAAIWorkshop
2501 AAAIWorkshoponIntelligentMultimediaInterfaces
6987 AACC
7714 AADEBUG
7602 AADIOS
1346 AAECC
7120 AAFD
6035 AAIM
7532 AAIP
5474 AAL
243 AALTD@PKDD/ECML
861 AAMAS
3137 AAMAS-OAMAS
4969 AAMAS-TRUST
3127 AAMASIndustrialApplications
3128 AAMASWorkshops
8961 AB
8617 ABAC@CODASPY
9474 ABICT
7359 ABP
8446 ABZ
6027 ABiALS
10233 ABiALSbook
2770 ABiosystemsApproachtoIndustrialPatientMonitoringandDiagnosticDevices
10312 ABlossomingDevelopmentofSplines
4382 AC
895 ACAC
4771 ACAI
7561 ACAL
6394 ACALCI
1495 ACC
1889 ACCAT
3721 ACCV
5998 ACCVWorkshops
6021 ACE
2296 ACE/ACSC/AISC/APCMM/AUIC/AWC
3630 ACES-MB&WUCOR@MoDELS
6182 ACESMB@MoDELS
9673 ACFIE
4704 ACG
8340 ACHI
5758 ACI@UAI
2597 ACII
402 ACIIDS
9230 ACIIDSPosters
7073 ACIS-ICIS
2442 ACISP
4770 ACITY
3032 ACIVS
563 ACL
9300 ACL/COLING
564 ACL/IJCNLP
644 ACL2
566 ACLWorkshoponNaturalLanguageProcessingintheBiomedicalDomain
4031 ACM
5699 ACM-GIS
862 ACM-TURING
803 ACMAnnualConference
4011 ACMAnnualConference-Therangeofcomputing
2680 ACMComput
428 ACMConferenceonComputerScience
696 ACMConferenceonComputerandCommunicationsSecurity
3970 ACMCrossroads
7105 ACMDEV
3087 ACMDL
422 ACMGreatLakesSymposiumonVLSI
8616 ACMJournalofComputerDocumentation
6 ACMJournalofEducationalResourcesinComputing
543 ACMJournalofExperimentalAlgorithmics
2457 ACML
1559 ACMMultimedia
5533 ACMMultimediaEMMEWorkshop
1907 ACMMultimediaWorkshops
5379 ACMPacific
8328 ACMPolicy
1403 ACMQueue
6991 ACMSIGAPLAPLQuoteQuad
7401 ACMSIGBDPConferenceonTrendsandDirectionsinExpertSystems
6391 ACMSIGMODAnthology
9758 ACMSIGMODDigitalReview
9969 ACMSIGMODDigitalSymposiumCollection
9835 ACMSIGMODWorkshoponResearchIssuesinDataMiningandKnowledgeDiscovery
5453 ACMSIGOPSEuropeanWorkshop
8522 ACMSIGPLANWorkshoponRule-BasedProgramming
1511 ACMSIGSOFTSoftwareEngineeringNotes
647 ACMSoutheastRegionalConference
6605 ACMStandardView
5069 ACMSymposiumonDocumentEngineering
4220 ACMSymposiumonUserInterfaceSoftwareandTechnology
809 ACMTIST
80 ACMTrans
8266 ACMTrans.Algorithms
6234 ACMTrans.SpatialAlgorithmsandSystems
3810 ACMTransactionsonAlgorithms
7092 ACMWorkshoponRole-BasedAccessControl
3239 ACNS
4699 ACOMP
6408 ACP4IS
7667 ACPC
3817 ACPR
5901 ACRI
1908 ACSAC
2297 ACSC
4906 ACSCC
7236 ACSD
9181 ACSD/PetriNetsWorkshops
7600 ACSE
1835 ACSSC
9543 ACST
6202 ACSWFrontiers
5223 ACT4SOC
8431 ACVI@MoDELS
5823 ACiD
5812 AClassofAlgorithmsforDistributedConstraintOptimization
2465 ACoTA
10375 AConciseIntroductiontoModelsandMethodsforAutomatedPlanning
2734 AConciseIntroductiontoMultiagentSystemsandDistributedArtificialIntelligence
3785 ADB
627 ADBIS
4409 ADBIS-DASFAA
4408 ADBIS-DASFAASymposium
4406 ADBISResearchCommunications
4407 ADBISWorkshops
4312 ADC
4885 ADCOG
974 ADCONS
5394 ADCS
5135 ADECS@PetriNets
8543 ADG
2513 ADHOC-NOW
7677 ADHOC-NOWWorkshops
4115 ADHOCNETS
7132 ADIS
4917 ADKDD@KDD
8504 ADL
597 ADMA
6214 ADMI
5719 ADMS@VLDB
7398 ADNTIIC
4919 ADPRL
2700 ADS
4912 ADT
6730 ADVIS
155 AE-CAI
6113 AEGS
10257 AESCandidateConference
10258 AESConference
6201 AEWSE
5469 AFHA
273 AFIPSFallJointComputingConference
271 AFIPSNationalComputerConference
270 AFIPSSpringJointComputingConference
5913 AFL
9423 AFPAC
4063 AFRICACRYPT
4225 AFRICOM
4230 AFRICOMM
2074 AFSS
6323 AGDM
9312 AGERE!@SPLASH
817 AGI
1744 AGILE
256 AGILEConf
6244 AGS
9207 AGTIVE
2763 AGuidetoVisualMulti-LevelInterfaceDesignFromSynthesisofEmpiricalStudyEvidence
10358 AGyrovectorSpaceApproachtoHyperbolicGeometry
2440 AH
3953 AHS
5401 AHalf-CenturyofAutomataTheory
9079 AHandbookforAnalyticalWriting
6966 AHybridImagination
10083 AI&M
5982 AI*HCI@AI*IA
2879 AI*IA
12 AI-AM/NetMed@AIME
7727 AI-AM/NetMed@ECAI
3911 AI4KM@ECAI
1167 AIAI
3197 AIAIWorkshops
5977 AIBP@AI*IA
8425 AIC
5976 AIC@AI*IA
748 AICCSA
4654 AICI
4130 AICOL
8187 AICOLWorkshops
4833 AICS
1571 AICT
1572 AICT/ICIW
1573 AICT/SAPIR/ELETE
791 AICommun
9118 AIDE@AI*IA
9657 AIDM
6085 AIDP
4584 AIED
3560 AIEDAM
5419 AIEDWorkshops
6029 AIFIPP
669 AIH+CARE@AUS-AI
4839 AII
3796 AII/ALT
5026 AIIDE
5509 AIIP/SemanticCities@IJCAI
9760 AIMC@EuroSys
9019 AIMConference
9293 AIMDM
19 AIME
8841 AIMM
1905 AIMS
3121 AIMSA
9651 AIMSG
3481 AIMagazine
5096 AIMashup@ESWC
825 AINA
828 AINAWorkshops
8830 AINTEC
1759 AIPR
5411 AIPS
6836 AIPSWorkshoponPlanningforTemporalDomains
5339 AIR
5234 AIRBORNE@MobiHoc
5122 AIRE
2880 AIRO@AI*IA
360 AIRS
9564 AIRWeb
9 AIS
3671 AIS-ADM
4092 AISA
3549 AISB
3547 AISB/GI
8451 AISBConvention
677 AISC
8199 AISC/MKM/Calculemus
8201 AISCM
8747 AISI
5825 AISM
8200 AISMC
6285 AISS
5801 AIST
2458 AISTATS
1777 AISec
700 AISec@CCS
1532 AISoc
8594 AIUCD
8606 AIWoRC
1623 AIforDataCenterManagementandCloudComputing
7016 AIinEngineering
6414 AIinStructuralEngineering
8189 AInF@IJCAI
9791 AKA
3131 ALA
7403 ALCOSP
8176 ALCOSP/PSYCO
5422 ALENEX
7608 ALENEX/ANALC
7607 ALENEX/ANALCO
7512 ALGOCLOUD
10427 ALGOL68Implementation
6055 ALGOSENSORS
7781 ALIA
2274 ALIFE
1048 ALP
10149 ALP/HOA
3851 ALPIT
4905 ALPSWS
9203 ALPUK
3795 ALT
9014 ALaRT
3188 AListofSuccessesThatCanChangetheWorld
6972 ALittleBookonTeaching
8228 AMAI
1188 AMAST
6112 AMBI-SYS
9438 AMBN@JSAI-isAI
3700 AMCA-POP
602 AMCIS
4848 AMCIS/SIGeBIZ
7946 AMCP
1938 AMCS
4503 AMDO
8741 AMEC
4971 AMEC/TADA
10246 AMET
5393 AMFG
9382 AMI
164 AMIA
5688 AMIF
9602 AMIWorkshops
4707 AMKM
7650 AMLTA
8050 AMMA
8637 AMMDS
7557 AMMSE
2463 AMS
691 AMT
3637 AMT@MoDELS
7672 AMTA
6018 AMW
1451 AMiRE
10183 AN
6538 ANALCO
7038 ANB
489 ANCS
3449 AND
5457 ANLP
4355 ANNES
5015 ANNIIP
4492 ANNPR
8827 ANNs
10053 ANSIX2H2
10054 ANSIX3H2
3147 ANT/MobiWIS
6532 ANT/SEIT
5349 ANTS
6476 ANTSConference
5081 ANTSWorkshop
5269 ANZIIS
3976 AOAsia@SIGSOFTFSE
8532 AOIS
9241 AOIS@AAMAS
9240 AOIS@CAiSE
6409 AOSD
6412 AOSDIndustryTrack
7148 AOSE
2546 AP-BPM
10029 AP2PC
7113 AP2PS
5721 APAQS
4494 APBC
2047 APCCAS
4353 APCCM
8642 APCHI
9263 APDC
5596 APF
7370 APGV
4660 APJOR
4466 APL
5589 APLAS
1536 APMS
5243 APNOMS
8047 APPIA-GULP-PRODE
8180 APPROX
3119 APPROX-RANDOM
8822 APPSEM
9017 APPT
2294 APSCC
2445 APSEC
2857 APSECWorkshops
3939 APSIPA
6377 APSITT
7242 APSys
8182 APVIS
5745 APWCS
417 APWeb
4988 APWeb/WAIM
419 APWeb/WAIMWorkshops
1980 APWebWorkshophs
418 APWebWorkshops
8724 APerspectiveinTheoreticalComputerScience
10292 APerspectiveonSingle-ChannelFrequency-DomainSpeechEnhancement
10137 APhilosophyofTechnology
2752 APracticalGuidetoGenderDiversityforComputerScienceFaculty
9067 APracticalGuidetoTestingWirelessSmartphoneApplications
6949 APrimeronHardwarePrefetching
9097 APrimeronMemoryConsistencyandCacheCoherence
3622 APrimeronPhysical-LayerNetworkCoding
3669 ARC
709 ARCS
2504 ARCSWorkshops
4028 ARE/AVSA@AAMAS
4143 AREA
3813 ARES
4608 ARIST
839 ARITH
7733 ARM
5494 ARM@Middleware
5162 ARMS-CC@PODC
4610 ARRAY@PLDI
4094 ARSO
367 ARSPA-WITS
5205 ART@PetriNets
8337 ARTCom
8338 ARTComE
10084 ARTDB
5631 ARTEL@EC-TEL
5827 ARTEMIS@ACMMultimedia
10190 ARTS
9534 ARVLSI
6679 ASA/MA
51 ASAP
3965 ASCILITE
6025 ASCM
2452 ASCoMS@SAFECOMP
3846 ASE
6640 ASEWorkshops
4097 ASIA-PEPM
695 ASIACCS
610 ASIACRYPT
1198 ASIAN
3064 ASICON
2487 ASID
3718 ASISSIG/CRClassificationResearchWorkshop
8448 ASM
6386 ASM@ACMMultimedia
3080 ASMTA
768 ASONAM
559 ASP-DAC
8218 ASPI@UbiComp
2485 ASPLOS
1916 ASRU
4784 ASSETS
7643 ASSRI
6040 ASST
7679 ASSURE@ICSE
4678 AST
5965 AST/UCMA/ISA/ACN
8056 AST@ICSE
603 ASWC
1258 ASWEC
7040 ASWSD
2046 ASYNC
2728 AShortIntroductiontoPreferences
7629 AStAWirtschafts-undSozialstatistischesArchiv
9860 ASystemEngineer'sGuidetoHostConfigurationandMaintenanceUsingCfengine
3951 AT
9901 ATACCS
5206 ATAED@PetriNets/ACSD
3129 ATAL
3873 ATANLP@EACL
7173 ATC
10174 ATE
5471 ATMOS
5467 ATS
5646 ATVA
7188 ATributetoProf.Dr.DaRuan
1464 ATx/WInG@IJCAR
6709 AUIC
612 AUSCRYPT
431 AUTOMATA&JAC
7636 AUTOMATION
2856 AVBPA
7323 AVEC@ACMMultimedia
2994 AVEC@MM
2861 AVI
9372 AVR
3672 AVSP
1971 AVSS
8393 AWC
6253 AWCC
7111 AWIC
7115 AWOC
7107 AWPN
8339 AWeS@EuroSys
9945 AXMEDIS
2733 AaronSwartz'sTheProgrammableWeb
149 AbdominalImaging
8820 AbstractSoftwareSpecifications
8445 AbstractStateMachines
1632 Abstraction,Reformulation,andApproximation
3517 AcceleratingGlobalSupplyChainswithIT-Innovation
7912 AccessControlinDataManagementSystems
6331 AccessNets
2771 AccurateComputationofMathieuFunctions
4996 AccurateScientificComputations
9085 AcousticalImpulseResponseFunctionsofMusicPerformanceHalls
5415 ActaCybern
915 ActaInf
2516 Actesd'IC
7157 ActionProgrammingLanguages
5584 ActiveConceptualModelingofLearning
8678 ActiveDatabaseSystems
9105 ActiveLearning
4939 ActiveLearningandExperimentalDesign@AISTATS
7098 ActiveMediaTechnology
8850 ActiveMiddlewareServices
4389 ActiveMining
5770 ActiveRulesinDatabaseSystems
1624 ActivityContextRepresentation
10291 ActivityTheoryinHCI
426 AdHoc&SensorWirelessNetworks
2276 AdHocNetworks
888 Ada-Europe
9389 AdaDeutschlandTagung
3185 AdaLovelaceSymposium
7081 AdaSoftwareToolsInterfaces
3235 AdaptionandLearninginMulti-AgentSystems
7274 Adaptive,OutputSensitive,OnlineandParameterizedAlgorithms
9493 AdaptiveAgentsandMulti-AgentSystems
5109 AdaptiveAgentsandMulti-AgentsSystems
3464 AdaptiveBehaviour
9730 AdaptiveHigh-ResolutionSensorWaveformDesignforTracking
7152 AdaptiveInteraction
6917 AdaptiveMultimediaRetrieval
8466 AdaptiveandMultilevelMetaheuristics
7045 AdaptiveandPersonalizedSemanticWeb
8956 AdaptiveandReflectiveMiddleware
8778 AdiabaticQuantumComputationandQuantumAnnealing
3391 Adv
1019 Adv.ArtificialIntellegence
8703 Adv.ArtificialNeuralSystems
8831 Adv.Bioinformatics
1803 Adv.DataAnalysisandClassification
9358 Adv.FuzzySystems
3554 Adv.Human-ComputerInteraction
7722 Adv.InternetofThings
6324 Adv.Model.andSimul.inEng.Sciences
9484 Adv.NumericalAnalysis
640 Adv.OperationsResearch
5183 Adv.SoftwareEngineering
821 Adv.inMM
5536 AdvancedBimanualManipulation
2767 AdvancedCircuitSimulationUsingMultisimWorkbench
9217 AdvancedComputationalIntelligenceParadigmsinHealthcare
2153 AdvancedComputationalIntelligenceParadigmsinHealthcare-2
2129 AdvancedComputationalMethodsforKnowledgeEngineering
8541 AdvancedCourse
10434 AdvancedDatabaseMachineArchitecture
7640 AdvancedDatabaseSystems
2150 AdvancedDynamicModelingofEconomicandSocialSystems
3956 AdvancedEngineeringInformatics
9880 AdvancedFunctionalProgramming
10206 AdvancedInformationProcessingTechniquesforLANandMANManagement
7056 AdvancedIntelligentComputationalTechnologiesandDecisionSupportSystems
9395 AdvancedIntelligentParadigmsinComputerGames
8034 AdvancedIntelligentSystems
8815 AdvancedLecturesonMachineLearning
2725 AdvancedMetasearchEngineTechnology
2162 AdvancedMethodsforComputationalCollectiveIntelligence
946 AdvancedNetworkEnterprises
7905 AdvancedProbabilityTheoryforBiomedicalEngineers
4190 AdvancedProgrammingEnvironments
4815 AdvancedQueryProcessing
10296 AdvancedRadarDetectionSchemesUnderMismatchedSignalModels
4616 AdvancedResearchinDataPrivacy
881 AdvancedRobotics
9394 AdvancedSOAToolsandApplications
8809 AdvancedStudiesinBiometrics
8803 AdvancedTopicsinArtificialIntelligence
9126 AdvancedTopicsinDatabaseResearch,Vol.1
9127 AdvancedTopicsinDatabaseResearch,Vol.2
8086 AdvancedTopicsinDatabaseResearch,Vol.3
1434 AdvancedTopicsinExceptionHandlingTechniques
8738 AdvancedTopicsinInformationRetrieval
10061 AdvancedTransactionModelsandArchitectures
7804 AdvancedVisualInterfaces
2257 AdvancedWebServices
3609 AdvancesInComputationalComplexityTheory
6875 AdvancesandApplicationsinSlidingModeControlSystems
7280 AdvancesandApplicationsofAutomataonWordsandTrees
4239 AdvancesinAdaptiveDataAnalysis
4641 AdvancesinAlgorithms,Languages,andComplexity
1090 AdvancesinBiologicallyInspiredInformationSystems
5456 AdvancesinComplexSystems
6160 AdvancesinComputationalIntelligenceandLearning
4454 AdvancesinComputerEntertainment
6663 AdvancesinComputerEntertainmentTechnology
9187 AdvancesinComputerGraphics
8097 AdvancesinComputerGraphicsHardware
8099 AdvancesinComputerGraphicsHardwareI
8453 AdvancesinComputerGraphicsHardwareII
8098 AdvancesinComputerGraphicsHardwareIII
8452 AdvancesinComputerGraphicsHardwareIV
5600 AdvancesinComputerGraphicsHardwareV
8100 AdvancesinComputerGraphicsHardwareVI
9194 AdvancesinComputerGraphicsI
9192 AdvancesinComputerGraphicsII
9190 AdvancesinComputerGraphicsIII
9193 AdvancesinComputerGraphicsIV
9189 AdvancesinComputerGraphicsV
9188 AdvancesinComputerGraphicsVI
4084 AdvancesinComputers
7234 AdvancesinComputingResearch
6469 AdvancesinDataBaseTheory
7151 AdvancesinDigitalGovernment
2151 AdvancesinDistributedAgent-BasedRetrievalTools
8808 AdvancesinDistributedSystems
2674 AdvancesinEngineeringSoftware
2143 AdvancesinEvolutionaryComputingforSystemDesign
1433 AdvancesinExceptionHandlingTechniques
5838 AdvancesinGenerativeLexiconTheory
6874 AdvancesinICTforBusiness,IndustryandPublicSector
4285 AdvancesinInformationRecording
9212 AdvancesinInformationSystemsResearch,EducationandPractice
2171 AdvancesinInformationandIntelligentSystems
1107 AdvancesinIntelligentAnalysisofMedicalDataandDecisionSupportSystems
8131 AdvancesinIntelligentInformationSystems
2137 AdvancesinIntelligentInformationandDatabaseSystems
7047 AdvancesinIntelligentModellingandSimulation
6107 AdvancesinIntelligentTutoringSystems
5748 AdvancesinKnowledgeDiscoveryandDataMining
7189 AdvancesinKnowledgeRepresentation,LogicProgramming,andAbstractArgumentation
1135 AdvancesinMachineLearningI
8117 AdvancesinMachineLearningII
6249 AdvancesinMetaheuristicsforHardOptimization
5196 AdvancesinModalLogic
2787 AdvancesinModernBlindSignalSeparationAlgorithms
1140 AdvancesinMulti-ObjectiveNatureInspiredComputing
2185 AdvancesinMultiresolutionforGeometricModelling
1098 AdvancesinMusicInformationRetrieval
4261 AdvancesinNetworkInformationTheory
10042 AdvancesinObject-OrientedDataModeling
4865 AdvancesinPetriNets
3317 AdvancesinPlan-BasedControlofRoboticAgents
8414 AdvancesinProbabilisticDatabasesforUncertainInformationManagement
4643 AdvancesinReal-TimeSystems
1119 AdvancesinSemanticMediaAdaptationandPersonalization
553 AdvancesinSocialMediaAnalysis
4302 AdvancesinSwitchingNetworks
9933 AdvancesinUbiquitousUserModelling
10397 AdvancesinWaveform-AgileSensingforTracking
1124 AdvancesinWebIntelligenceandDataMining
8019 AdvancesinWebSemanticsI
9621 AdvancesonSuperellipticCurvesandtheirApplications
8032 AdvancesontotheInternetofThings
7627 AegeanWorkshoponComputing
9934 AffectandEmotioninHuman-ComputerInteraction
4252 AfricanAmericansinMathematics
9752 AfricanJ.ofInf.&Commun.Technology
1512 Afrigraph
7752 AgentLink
3215 AgentMediatedElectronicCommerce
2247 AgentModeling
7518 AgentTechnologies,Infrastructures,Tools,andApplicationsforE-Services
1159 AgentandMulti-agentTechnologyforInternetandEnterpriseSystems
6223 Agents
9448 AgentsWorkshoponInfrastructureforMulti-AgentSystems
9214 AgentsandAmbientIntelligence
4967 AgentsandComputationalAutonomy
673 AgentsandMulti-AgentSystemsFormalisms,Methodologies,andApplications
1745 AgileDevelopmentConference
2066 AiSoS
5216 AlCoB
6793 AlMoDEP
3260 Algebra,Geometry,andSoftwareSystems
7311 AlgebraicAspectsofDigitalCommunications
9135 AlgebraicCoding
4280 AlgebraicCodingTheoryandInformationTheory
4644 AlgebraicFoundationsinComputerScience
6480 AlgebraicFoundationsofSystemsSpecification
8562 AlgebraicLogicandUniversalAlgebrainComputerScience
4710 AlgebraicMethods
3295 AlgebraicMethodsinComputationalComplexity
6275 AlgebraicandCoalgebraicMethodsintheMathematicsofProgramConstruction
2022 AlgebraicandNumericalAlgorithmsandComputer-assistedProofs
4648 AlgebraicandProof-theoreticAspectsofNon-classicalLogics
1996 AlgoSyn
6563 AlgorithmEngineering
5039 Algorithmic-LogicalTheoryofInfiniteStructures
3750 AlgorithmicAlgebraandLogic
5056 AlgorithmicAspectsofLargeandComplexNetworks
8717 AlgorithmicFinance
9460 AlgorithmicFoundationsofGeographicInformationSystems
9393 AlgorithmicLanguagesandCalculi
7260 AlgorithmicMethodsforDistributedCooperativeSystems
9984 AlgorithmicMethodsforRailwayOptimization
6992 AlgorithmicOperationsResearch
3772 AlgorithmicProbabilityandFriends
2200 Algorithmica
10082 AlgorithmicandQuantitativeAspectsofRealAlgebraicGeometryinMathematicsandComputerScience
10229 AlgorithmicsofLargeandComplexNetworks
4080 Algorithms
3189 Algorithms,Probability,Networks,andGames
2267 AlgorithmsUnplugged
5261 AlgorithmsandApplications
7867 AlgorithmsandApplicationsforNextGenerationSATSolvers
2006 AlgorithmsandComplexityforContinuousProblems
7287 AlgorithmsandNumberTheory
7718 AlgorithmsandParallelVLSIArchitectures
10282 AlgorithmsandSoftwareforPredictiveandPerceptualModelingofSpeech
3300 AlgorithmsforMemoryHierarchies
6413 AlgorithmsforMolecularBiology
3312 AlgorithmsforOptimizationwithIncompleteInformation
2744 AlgorithmsforReinforcementLearning
3313 AlgorithmsforSensorandAdHocNetworks
2362 AlgorithmsfromandforNatureandLife
4365 AlgorithmsinModernMathematicsandComputerScience
9932 AliasinginObject-OrientedProgramming
7240 AllAboutMaude
8950 AllThingsCellular@SIGCOMM
1694 Allerton
3069 AllertonConference
6156 AlveyVisionConference
3355 AmI
3357 AmIWorkshops
8196 AmbientInformationSystems
781 AmbientIntelligenceforScientificDiscovery
9238 AmericanJ.ComputationalMathematics
4690 AmericanJournalofComputationalLinguistics
6028 AmsterdamColloquiumonLogic,LanguageandMeaning
10123 AnEasyPathtoConvexAnalysisandApplications
9705 AnElectropalatographicandAcousticStudyonAnticipatoryCoarticulationinV1C2V2SequencesinStandardChinese
8766 AnIntroductiontoConstraint-BasedTemporalReasoning
10363 AnIntroductiontoDuplicateDetection
10392 AnIntroductiontoKalmanFilteringwithMATLABExamples
10289 AnIntroductiontoLogicCircuitTesting
10279 AnIntroductiontoModelsofOnlinePeer-to-PeerSocialNetworking
10299 AnIntroductiontoMultivariableMathematics
9096 AnOutlineofInformationalGenetics
10259 AnalogCircuitsandSystemsOptimizationbasedonEvolutionaryComputationTechniques
4588 AnalyseStatistiqueImplicative
10350 AnalysisTechniquesforInformationSecurity
1392 AnalysisandDesignofIntelligentSystemsusingSoftComputingTechniques
7746 AnalysisandOptimizationofDifferentialSystems
7222 AnalysisandVisualizationToolsforConstraintProgramming
6941 AnalysisandVisualizationofCitationNetwork
5751 AnalysisofBiologicalData
8814 AnalysisofDynamicalandCognitiveSystems
9110 AnalysisofOrientedTexturewithApplicationstotheDetectionofArchitecturalDistortioninMammograms
7900 AnalysisoftheMPEG-1LayerIIIAlgorithmUsingMATLAB
10360 AnalyticalPerformanceModelingforComputerSystems
9084 AnalyticalPerformanceModelingforComputerSystems,SecondEdition
1630 AnalyzingMicrotext
7689 AnapproximationtrichotomyforBooleanCSP
4977 AngewandteInformatik
72 Ann
3007 Ann.PureAppl.Logic
130 AnnalesUMCS,Informatica
1047 AnnalsOR
5068 AnnalsofGIS
2033 Annotating,ExtractingandReasoningaboutTimeandEvents
10141 AnnualLinuxShowcase&Conference
6537 AnnualReviewsinControl
3716 AnnualSimulationSymposium
3337 AnonymousCommunicationanditsApplications
6744 AnswerSetProgramming
2798 AnswerSetSolvinginPractice
2860 AntAlgorithms
9071 AntennaswithNon-FosterMatchingNetworks
2225 ApSys
450 Appl
10347 ApplicationDesignforWearableComputing
4856 ApplicationandTheoryofPetriNets
4862 ApplicationofPetriNetstoCommunicationNetworks
4854 ApplicationsandTheoryinPetriNets
4863 ApplicationsandTheoryofPetriNets
9264 ApplicationsinParallelandDistributedComputing
1830 ApplicationsofAffineandWeylGeometry
2462 ApplicationsofAgentTechnologyinTrafficandTransportation
7054 ApplicationsofComputationalIntelligenceinBiology
3438 ApplicationsofComputationalIntelligenceinBiomedicalTechnology
5899 ApplicationsofIntelligentOptimizationinBiologyandMedicine
3074 ApplicationsofInvarianceinComputerVision
6250 ApplicationsofMembraneComputing
2169 ApplicationsofNeuralNetworksinHighAssuranceSystems
6607 ApplicationsofSupervisedandUnsupervisedEnsembleMethods
7585 ApplicationsofUncertaintyFormalisms
1635 AppliedAdversarialReasoningandRiskModeling
4869 AppliedArtificialIntelligence
5320 AppliedCategoricalStructures
5544 AppliedComp.Int.SoftComputing
4292 AppliedGeometryAndDiscreteMathematics
8468 AppliedGraphTheoryinComputerVisionandPatternRecognition
520 AppliedInformatics
729 AppliedMathematicsandComputation
2252 AppliedMathematicsandComputerScience
7232 AppliedOntology
8986 AppliedPatternRecognition
6904 ApproachesinIntegrativeBioinformatics
8934 ApproachestoLegalRationality
6942 ApproximabilityofOptimizationProblemsthroughAdiabaticQuantumComputation
7763 ArbeitundInformationstechnik
1467 Arch
3307 ArchitectingSystemswithTrustworthyComponents
8894 ArchitectingtheInternetofThings
1992 ArchitectureandProtocolsforHigh-SpeedNetworks
6834 ArchitecturesandCompilationTechniquesforFineandMediumGrainParallelism
5321 ArchiveofFormalProofs
3352 ArchivesandMuseumInformatics
2789 ArduinoMicrocontroller
10376 ArduinoMicrocontrollerProcessingforEveryone!PartII
9733 ArduinoMicrocontrollerProcessingforEveryone!ThirdEdition
9781 ArgMAS
9678 ArgNLP
757 Argument&Computation
9227 ArrayGrammars,PatternsandRecognizers
503 ArsComb
10012 Art-QoS
2743 ArticulationandIntelligibility
2831 ArticulatorySpeechSynthesisfromtheFluidDynamicsoftheVocalApparatus
767 Artif
4045 Artif.Intell.Law
6705 Artif.Intell.Research
9833 ArtificalIntelligenceforHumanComputing
1900 ArtificialEvolution
2359 ArtificialGeneralIntelligence
9054 ArtificialIntelligence
1133 ArtificialIntelligence,EvolutionaryComputingandMetaheuristics
6795 ArtificialIntelligenceApplicationsinInformationandCommunicationTechnologies
8120 ArtificialIntelligenceTechniquesforComputerGraphics
7832 ArtificialIntelligenceToday
7772 ArtificialIntelligenceandApplications
6857 ArtificialIntelligenceandPatternRecognition
2245 ArtificialIntelligenceandSmarterLiving
7425 ArtificialIntelligenceandSoftComputing
7377 ArtificialIntelligenceinHigherEducation
3220 ArtificialIntelligenceinMedicine
7052 ArtificialIntelligenceinRecognitionandClassificationofAstrophysicalandMedicalImages
6320 ArtificialIntelligenceintheGameDesignProcess
5642 ArtificialLife
8946 ArtificialNeuralNetworks
2804 ArtificialOrgans
3330 ArtificialandComputationalIntelligenceinGames
7329 ArtsIT
7966 Asia-PacificComputerSystemsArchitectureConference
1452 AsiaInternationalConferenceonModellingandSimulation
6416 AsiaJCIS
698 AsiaPKC@AsiaCCS
299 AsiaSim
2956 AsianTestSymposium
4112 AslibJ
8016 AslibProceedings
8656 Aspect-OrientedRequirementsEngineering
5055 AspectsForLegacyApplications
837 AspectsofAutomaticTextAnalysis
3763 AspectsofMolecularComputing
3781 AspectsofNaturalLanguageProcessing
3948 AspektederSelbstorganisation
2007 AssistedLivingSystems-Models,ArchitecturesandEngineeringApproaches
6097 AssistiveTechnologyandArtificialIntelligence
9057 AssurancesforSelf-AdaptiveSystems
1596 AsymptoticAnalysis
10037 AsynchronousDesignMethodologies
2794 AsynchronousSequentialMachineDesignandAnalysis
10356 AtmelAVRMicrocontrollerPrimer
10293 AtmelAVRMicrocontrollerPrimer,SecondEdition
3331 Atomicity
7481 AtomicityinSystemDesignandExecution
6659 AttributeGrammars,ApplicationsandSystems
1402 AudioMostlyConference
2908 AugmentedRealityArt
5870 AusCTW
6430 AusDM
9749 AusGrid
297 AusgezeichneteInformatikdissertationen
905 Austr.J.IntelligentInformationProcessingSystems
672 AustralasianConferenceonArtificialIntelligence
4313 AustralasianDatabaseConference
6096 AustralasianJ.ofInf.Systems
7462 AustralianComputer,Network&InformationForensicsConference
4788 AustralianComputerJournal
671 AustralianConferenceonArtificialIntelligence
9237 AustralianDatabaseConference
670 AustralianJointConferenceonArtificialIntelligence
1260 AustralianSoftwareEngineeringConference
6708 Austrographics
1540 AutoID
251 Autom
4951 Automata
3742 Automata,FormalLanguages,andRelatedTopics
5045 Automata,Logics,andInfiniteGames
1242 AutomataNetworks
8993 AutomataTheoryandFormalLanguages
1246 AutomataonInfiniteWords
1633 AutomatedActionPlanningforAutonomousMobileRobots
1914 AutomatedDeductioninGeometry
9093 AutomatedGrammaticalErrorDetectionforLanguageLearners
8777 AutomatedGrammaticalErrorDetectionforLanguageLearners,SecondEdition
2742 AutomatedMetadatainMultimediaInformationSystems
4647 AutomatedReasoning
5256 AutomatedReasoningandMathematics
1146 AutomatedSchedulingandPlanning
8992 AutomatentheorieundFormaleSprachen
3178 AutomaticControlandComputerSciences
167 AutomaticDetectionofVerbalDeception
6551 AutomaticPerformanceAnalysis
3943 AutomaticVerificationMethodsforFiniteStateSystems
30 Automatica
6461 Automation,Control,andInformationTechnology
7279 AutomationinDigitalPreservation
92 Automatisierungstechnik
3682 Automotive-Safety&Security
6840 AutomotiveUI
4607 Auton.Robots
5836 AutonomicCommunication
2917 AutonomicComputingandNetworking
8714 AutonomicNetworking
9288 Autonomics
4940 AutonomousAgentsandMulti-AgentSystems
1110 AutonomousSystems
6554 AutonomousandAdaptiveWebServices
6486 AwarenessSystems
4126 Axioms
4402 B
5475 B-Interface
6121 BAIP
3900 BAMBI
947 BASYS
2605 BCB
7834 BCBGC
4343 BCEC
8474 BCI
3342 BCS-IRSGAnnualColloquiumonIRResearch
5395 BCSHCI
9191 BCSInt
8290 BCSInternationalITConferenc
8423 BCSInternationalITConference
8704 BCSS@PERSUASIVE
4731 BD
6247 BD3@VLDB
2923 BDA
1455 BDAS
8246 BDC
8095 BDCloud
8530 BDIM
6090 BDM2I@ISWC
5010 BDVA
4534 BEAT
1698 BELIV
10252 BESC
929 BEWEB
4241 BHI
3559 BIAA
1413 BIBE
2523 BIBM
6002 BIBMWorkshops
5308 BIC-TA
4517 BICA
8021 BICC
6080 BICOD
8026 BICS
7865 BICT
7349 BICoB
5278 BIFE
1005 BIGDSE@ICSE
4005 BIGDSE@ICSE2015
3006 BIH
5740 BIIML
4827 BIOCOMP
461 BIODEVICES
8359 BIOID
4457 BIOIMAGING
3688 BIOINFORMATICS
115 BIOKDD
4502 BIOMET
10142 BIOMS
7419 BIONETICS
630 BIOSIG
462 BIOSIGNALS
5473 BIOSTEC
1939 BIOTECHNO
9592 BIOWIRE
2342 BIR
5655 BIR@ECIR
5651 BIRD
1 BIRTE
4772 BIRWorkshops
823 BIS
7594 BIT
540 BJET
7345 BLISS
6597 BM-FA
249 BMA
5759 BMA@UAI
5433 BMAS
283 BMCBioinformatics
3815 BMCGenomics
4982 BMCMed.Inf.&DecisionMaking
2077 BMCMedicalImaging