aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/landing/sections/Publications.tsx
blob: e343c4207015464ed64b94621749733000e5acc6 (plain) (blame)
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
/*
 * SPDX-FileCopyrightText: 2023-2024 Kristóf Marussy
 *
 * SPDX-License-Identifier: MIT
 */

import {
  ArrowSquareOut,
  Certificate,
  File,
  Lock,
  Package,
  Play,
} from '@phosphor-icons/react';
import clsx from 'clsx';

import {
  CreativeCommonsIcon,
  DBLPIcon,
  GoogleScholarIcon,
  MTMTIcon,
  OrcidIcon,
  ScopusIcon,
} from '@site/src/components/icons';
import Section from '@site/src/components/landing/Section';
import Subtitle from '@site/src/components/landing/Subtitle';
import styles from './Publications.module.css';

function DOILink({ doi }: { doi: string }) {
  return (
    <a
      href={`https://doi.org/${doi}`}
      className={clsx(styles.link, styles['link--lower'])}
    >
      <ArrowSquareOut
        weight="bold"
        aria-hidden="true"
        className={styles.link__icon}
      />
      DOI
    </a>
  );
}

function PDFLink({ filename }: { filename: string }) {
  return (
    <a
      href={`/papers/${filename}.pdf`}
      className={clsx(styles.link, styles['link--lower'])}
    >
      <File weight="bold" aria-hidden="true" className={styles.link__icon} />
      PDF
    </a>
  );
}

function ArtifactLink({ doi }: { doi: string }) {
  return (
    <a
      href={`https://doi.org/${doi}`}
      className={clsx(styles.link, styles['link--lower'])}
    >
      <Package weight="bold" aria-hidden="true" className={styles.link__icon} />
      Artifact
    </a>
  );
}

function ArxivLink({ arxivID }: { arxivID: string }) {
  return (
    <a href={`https://arxiv.org/abs/${arxivID}`} className={styles.link}>
      <ArrowSquareOut
        weight="bold"
        aria-hidden="true"
        className={styles.link__icon}
      />
      arXiv
    </a>
  );
}

function VideoLink({ url }: { url: string }) {
  return (
    <a href={url} className={clsx(styles.link, styles['link--lower'])}>
      <Play weight="bold" aria-hidden="true" className={styles.link__icon} />
      Video
    </a>
  );
}

function ClosedAccess({ publisher, url }: { publisher: string; url: string }) {
  return (
    <a
      href={url}
      rel="nofollow"
      className={clsx(styles.link, styles['link--license'])}
    >
      <Lock weight="bold" aria-hidden="true" className={styles.link__icon} />
      <span className="sr-only">Closed Access: </span>
      {publisher}
    </a>
  );
}

function OpenAccess({ license }: { license: string }) {
  const url = `https://creativecommons.org/licenses/${license}/4.0/`;
  return (
    <a href={url} className={clsx(styles.link, styles['link--license'])}>
      <CreativeCommonsIcon className={styles.link__icon} hidden />
      <span className="sr-only">Open Access: </span>
      CC-{license.toUpperCase()}-4.0
    </a>
  );
}

function ArtifactLicense({ license, url }: { license: string; url: string }) {
  return (
    <a href={url} className={clsx(styles.link, styles['link--license'])}>
      <Certificate
        weight="bold"
        aria-hidden="true"
        className={styles.link__icon}
      />
      <span className="sr-only">Artifact license: </span>
      {license}
    </a>
  );
}

export default function Publications() {
  return (
    <Section id="publications" title="Publications">
      <div className="container">
        <section>
          <Subtitle icon="📌">Selected publications</Subtitle>
          <ul>
            <li className={styles.publications__item}>
              <b>Kristóf Marussy</b>, Attila Ficsor, Oszkár Semeráth, Dániel
              Varró (2024). Refinery: Graph Solver as a Service. In&nbsp;
              <i>
                International Conference on Software Engineering (ICSE) 2024
              </i>
              . <PDFLink filename="icse24" />{' '}
              <VideoLink url="https://www.youtube.com/watch?v=Qy_3udNsWsM" />{' '}
              <OpenAccess license="by" />
            </li>
            <li className={styles.publications__item}>
              Máté Földiák, <b>Kristóf Marussy</b>, Dániel Varró, István Majzik
              (2022). System architecture synthesis for performability by logic
              solvers. In&nbsp;
              <i>
                International Conference on Model Driven Engineering Languages
                and Systems (MODELS) 2022,
              </i>{' '}
              pp.&nbsp;433&ndash;45. <DOILink doi="10.1145/3550355.3552448" />{' '}
              <PDFLink filename="models22" />{' '}
              <ClosedAccess
                publisher="ACM"
                url="https://authors.acm.org/journals/rights-permissions"
              />{' '}
              <ArtifactLink doi="10.5281/zenodo.6974248" />{' '}
              <ArtifactLicense
                license="EPL-2.0"
                url="https://www.eclipse.org/legal/epl-v20.html"
              />
            </li>
            <li className={styles.publications__item}>
              Boqi Chen, <b>Kristóf Marussy</b>, Sebastian Pilarski, Oszkár
              Semeráth, Dániel Varró (2022). Consistent Scene Graph Generation
              by Constraint Optimization. In&nbsp;
              <i>
                International Conference on Automated Software Engineering (ASE)
                2022
              </i>
              . <DOILink doi="10.1145/3551349.3560433" />{' '}
              <PDFLink filename="ase22" /> <OpenAccess license="by" />
            </li>
            <li className={styles.publications__item}>
              <b>Kristóf Marussy</b>, Oszkár Semeráth, Dániel Varró (2022).{' '}
              Automated Generation of Consistent Graph Models With Multiplicity
              Reasoning. <i>IEEE Transactions on Software Engineering,</i>{' '}
              volume 48, issue 5. <DOILink doi="10.1109/TSE.2020.3025732 " />{' '}
              <PDFLink filename="tse22" /> <OpenAccess license="by" />
            </li>
            <li className={styles.publications__item}>
              Márton Búr, <b>Kristóf Marussy</b>, Brett H.&nbsp;Meyer, Dániel
              Varró (2021). Worst-case Execution Time Calculation for
              Query-based Monitors by Witness Generation.{' '}
              <i>ACM Transactions on Embedded Computing Systems,</i> volume 20,
              issue 6. <DOILink doi="10.1145/3239372.3239412" />{' '}
              <ArxivLink arxivID="2102.03116" /> <PDFLink filename="tecs21" />{' '}
              <OpenAccess license="by" />
            </li>
            <li className={styles.publications__item}>
              <b>Kristóf Marussy</b>, Oszkár Semeráth, Aren A.&nbsp;Babikian,
              Dániel Varró (2020). A Specification Language for Consistent Model
              Generation based on Partial Models.{' '}
              <i>Journal of Object Technology,</i> volume 19,
              pp.&nbsp;3:1&ndash;22. <DOILink doi="10.5381/jot.2020.19.3.a12" />{' '}
              <PDFLink filename="jot20" />{' '}
              <VideoLink url="https://www.youtube.com/watch?v=ggTbv_s5t2A" />{' '}
              <OpenAccess license="by-nd" />
            </li>
            <li className={styles.publications__item}>
              <b>Kristóf Marussy</b> and Oszkár Semeráth (2018). Incremental
              View Model Synchronization Using Partial Models. In&nbsp;
              <i>
                International Conference on Model Driven Engineering Languages
                and Systems (MODELS) 2018,
              </i>{' '}
              pp.&nbsp;323&ndash;333. <DOILink doi="10.1145/3239372.3239412" />{' '}
              <PDFLink filename="models18" />{' '}
              <ClosedAccess
                publisher="ACM"
                url="https://authors.acm.org/journals/rights-permissions"
              />{' '}
              <ArtifactLink doi="10.5281/zenodo.1318156" />{' '}
              <ArtifactLicense
                license="EPL-1.0"
                url="https://www.eclipse.org/legal/epl-v10.html"
              />
            </li>
          </ul>
        </section>
        <div className={styles.elsewhere}>
          <p className={styles.elsewhere__text}>
            See the full list of my publications at
          </p>
          <ul className={styles.elsewhere__list}>
            <li className={styles.elsewhere__item}>
              <a
                href="https://orcid.org/0000-0002-9135-8256"
                className={styles.elsewhere__icon}
              >
                <OrcidIcon />
              </a>
            </li>
            <li className={styles.elsewhere__item}>
              <a
                href="https://dblp.org/pid/130/6479.html"
                className={styles.elsewhere__icon}
              >
                <DBLPIcon />
              </a>
            </li>
            <li className={styles.elsewhere__item}>
              <a
                href="https://scholar.google.com/citations?user=E9CKNYoAAAAJ"
                className={styles.elsewhere__icon}
              >
                <GoogleScholarIcon />
              </a>
            </li>
            <li className={styles.elsewhere__item}>
              <a
                href="https://www.scopus.com/authid/detail.uri?authorId=55860043200"
                className={styles.elsewhere__icon}
              >
                <ScopusIcon />
              </a>
            </li>
            <li className={styles.elsewhere__item}>
              <a
                href="https://m2.mtmt.hu/gui2/?type=authors&mode=browse&sel=authors10062709"
                className={styles.elsewhere__icon}
              >
                <MTMTIcon />
              </a>
            </li>
          </ul>
        </div>
      </div>
    </Section>
  );
}