#!/usr/bin/perl

## Convert SNNS pattern file to a temporary file to be read by R

## Copyright (C) 1997 Friedrich Leisch
## 
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2, or (at your option)
## any later version.
## 
## This program is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
## General Public License for more details. 
## 
## You should have received a copy of the GNU General Public License
## along with this file.  If not, write to the Free Software Foundation,
## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

## Author:  FL (Friedrich.Leisch@ci.tuwien.ac.at)

$ins = "";
$outs = "";
$tars = "";

$start=0;

$ins=0;
$tars=0;

while(<>){
    if(/No. of input units.* (\d*)/){
	$ins=$1;
    }
    if(/No. of output units.* (\d*)/){
	$tars=$1;
    }
    
    if (/Input pattern 1:/){
	print "$ins $tars 0\n";
	$start=1;
    }
    elsif(/Input pattern/){
	  print "\n";
      }
    elsif(!/#/){
	chop;
	print "$_ " if $start;
    }
}
print "\n";
