src/Pure/General/xz.scala
author wenzelm
Wed, 04 Oct 2017 12:00:53 +0200
changeset 66787 64b47495676d
parent 64004 b4ece7a3f2ca
child 68018 3747fe57eb67
permissions -rw-r--r--
obsolete;

/*  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
  }
}