All Downloads are FREE. Search and download functionalities are using the official Maven repository.

General.xz.scala Maven / Gradle / Ivy

There is a newer version: 1.1.0-RC3
Show newest version
/*  Title:      Pure/General/xz.scala
    Author:     Makarius

Support for XZ data compression.
*/

package isabelle


import org.tukaani.xz.LZMA2Options


object XZ
{
  type Options = LZMA2Options

  def options(preset: Int = 3): Options =
  {
    val opts = new LZMA2Options
    opts.setPreset(preset)
    opts
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy