SmallSense__SmalltalkInferencerParameters.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 09 Jul 2014 12:06:40 +0100
changeset 249 8bc64027b189
parent 192 f27ce6dac101
child 252 feba6ee5c814
permissions -rw-r--r--
Package renamed to stx:goodies/smallsense

"{ Package: 'stx:goodies/smallsense' }"

"{ NameSpace: SmallSense }"

SharedPool subclass:#SmalltalkInferencerParameters
	instanceVariableNames:''
	classVariableNames:'UnionTypeMaxSize UnionTypeReduceThreshold'
	poolDictionaries:''
	category:'SmallSense-Smalltalk-Types-Inference'
!


!SmalltalkInferencerParameters class methodsFor:'initialization'!

initialize
    "Invoked at system start or when the class is dynamically loaded."

    "/ please change as required (and remove this comment)

    UnionTypeMaxSize := 15.
    UnionTypeReduceThreshold := 5.

    "Modified: / 01-03-2014 / 23:23:03 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!SmalltalkInferencerParameters class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
! !


SmalltalkInferencerParameters initialize!