Skip to content
Zhang, Yin edited this page Dec 24, 2021 · 11 revisions

Welcome to the ppcode3 wiki!

Log4j

ppcode3 uses Log4j to print logs. Please specify the following Log4j configuration file as -Dlog4j.configurationFile=path/to/log4j2.xml

<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="INFO">
  <Appenders>
    <Console name="Console" target="SYSTEM_OUT">
      <PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
    </Console>
  </Appenders>
  <Loggers>
    <Root level="info">
      <AppenderRef ref="Console"/>
    </Root>
  </Loggers>
</Configuration>

Code

  • Online Code Cassuto, Yuval, and Amin Shokrollahi. "Online fountain codes with low overhead." IEEE Transactions on Information Theory 61.6 (2015): 3137-3149.
  • Improved Online Code Zhao, Yuli, et al. "Improved online fountain codes." IET Communications 12.18 (2018): 2297-2304.
  • Expanding Window Code Vukobratovic, Dejan, et al. "Scalable video multicast using expanding window fountain codes." IEEE Transactions on Multimedia 11.6 (2009): 1094-1104.

Clone this wiki locally