src/Pure/General/xz.scala
author haftmann
Sun, 08 Oct 2017 22:28:21 +0200
changeset 66811 aa288270732a
parent 64004 b4ece7a3f2ca
child 68018 3747fe57eb67
permissions -rw-r--r--
dropped duplicates

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