[Rsiena-commits] r51 - in pkg/RSiena: . R data inst/doc src src/win32
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Thu Feb 4 18:21:08 CET 2010
Author: ripleyrm
Date: 2010-02-04 18:21:07 +0100 (Thu, 04 Feb 2010)
New Revision: 51
Modified:
pkg/RSiena/R/effects.r
pkg/RSiena/changeLog
pkg/RSiena/configure.win
pkg/RSiena/data/allEffects.csv
pkg/RSiena/inst/doc/s_man400.pdf
pkg/RSiena/src/Makefile.win
pkg/RSiena/src/Makevars
pkg/RSiena/src/win32/Makefile
Log:
1) Minor bug fixes to effects.
2) Changes to makefiles for Win64.
Modified: pkg/RSiena/R/effects.r
===================================================================
--- pkg/RSiena/R/effects.r 2010-02-01 21:05:42 UTC (rev 50)
+++ pkg/RSiena/R/effects.r 2010-02-04 17:21:07 UTC (rev 51)
@@ -259,7 +259,6 @@
## get starting values
starts <- getNetworkStartingVals(depvar)
-
##set defaults
rateEffects[1:noPeriods, "include"] <- TRUE
rateEffects[1:noPeriods, "initialValue"] <- starts$startRate
@@ -268,18 +267,18 @@
objEffects$untrimmedValue <- rep(0, nrow(objEffects))
if (attr(depvar,'symmetric'))
{
- objEffects[objEffects$effectName == "degree (density)" &
+ objEffects[objEffects$shortName == "density" &
objEffects$type == "eval",
c('include', "initialValue", "untrimmedValue")] <-
list(TRUE, starts$degree, starts$untrimmed)
- objEffects[objEffects$effectName=='transitive triads' &
+ objEffects[objEffects$shortName=='transTriads' &
objEffects$type=='eval','include'] <- TRUE
}
else
{
if (!(attr(depvar,'allUpOnly') || attr(depvar, 'allDownOnly')))
{
- objEffects[objEffects$effectName =='outdegree (density)'&
+ objEffects[objEffects$shortName == "density" &
objEffects$type == 'eval',
c('include', "initialValue", "untrimmedValue")] <-
list(TRUE, starts$degree, starts$untrimmed)
@@ -289,8 +288,8 @@
objEffects <-
objEffects[!objEffects$shortName == "density", ]
}
- objEffects[objEffects$effectName == 'reciprocity'&
- objEffects$type == 'eval','include'] <- TRUE
+ objEffects[objEffects$shortName == 'recip'&
+ objEffects$type == 'eval', 'include'] <- TRUE
}
rateEffects$basicRate[1:observations] <- TRUE
list(effects=rbind(rateEffects = rateEffects, objEffects = objEffects),
@@ -442,7 +441,7 @@
objEffects <- createEffects("bipartiteObjective", varname)
- for (j in seq(along = xx$dycCovars))
+ for (j in seq(along = xx$dycCovars))
{
if (all(nodeSets == attr(xx$dycCovars[[j]], 'nodeSet')))
{
@@ -464,7 +463,7 @@
{
covNodeset <- match(attr(xx$cCovars[[j]], "nodeSet"),
nodeSets)
- if (covNodeset > 0)
+ if (!is.na(covNodeset))
{
tmp <- covarBipartiteEff(names(xx$cCovars)[j],
attr(xx$cCovars[[j]],
@@ -482,7 +481,7 @@
{
covNodeset <- match(attr(xx$depvars[[j]], "nodeSet"),
nodeSets)
- if (covNodeset > 0)
+ if (!is.na(covNodeset))
{
tmp <- covarBipartiteEff(names(xx$depvars)[j],
poszvar=TRUE,
@@ -498,7 +497,7 @@
{
covNodeset <- match(attr(xx$vCovars[[j]], "nodeSet"),
nodeSets)
- if (covNodeset > 0)
+ if (!is.na(covNodeset))
{
tmp <- covarBipartiteEff(names(xx$vCovars)[j],
attr(xx$vCovars[[j]],
@@ -574,7 +573,7 @@
if (!(attr(depvar,'allUpOnly') || attr(depvar, 'allDownOnly')))
{
- objEffects[objEffects$effectName =='outdegree (density)' &
+ objEffects[objEffects$shortName =='density' &
objEffects$type == 'eval',
c('include', 'initialValue', 'untrimmedValue')] <-
list(TRUE, starts$degree, starts$untrimmed)
@@ -633,6 +632,7 @@
##@covarBipartiteEff internal getEffects
covarBipartiteEff<- function(covarname, poszvar, moreThan2, nodesetNbr)
{
+ covRateEffects <- NULL
if (nodesetNbr == 1)
{
covObjEffects <-
@@ -927,8 +927,8 @@
attr(effects[[eff]], "starts")$prec <- prec
if (attr(depvar, 'symmetric'))
{
- effects[[eff]][effects[[eff]]$effectName ==
- 'degree (density)' &
+ effects[[eff]][effects[[eff]]$shortName ==
+ 'density' &
effects[[eff]]$type == 'eval',
c('initialValue','untrimmedValue')] <-
list(degree, untrimmed)
@@ -937,8 +937,8 @@
{
if (!(attr(x,'anyUpOnly') || attr(x, 'anyDownOnly')))
{
- effects[[eff]][effects[[eff]]$effectName ==
- 'outdegree (density)' &
+ effects[[eff]][effects[[eff]]$shortName ==
+ 'density' &
effects[[eff]]$type == 'eval',
c('initialValue',
"untrimmedValue")] <-
@@ -980,8 +980,8 @@
attr(effects[[eff]], "starts")$prec <- prec
if (!(attr(x,'anyUpOnly') || attr(x, 'anyDownOnly')))
{
- effects[[eff]][effects[[eff]]$effectName ==
- 'outdegree (density)' &
+ effects[[eff]][effects[[eff]]$shortName ==
+ 'density' &
effects[[eff]]$type == 'eval',
c('initialValue',
"untrimmedValue")] <-
Modified: pkg/RSiena/changeLog
===================================================================
--- pkg/RSiena/changeLog 2010-02-01 21:05:42 UTC (rev 50)
+++ pkg/RSiena/changeLog 2010-02-04 17:21:07 UTC (rev 51)
@@ -1,3 +1,11 @@
+2010-02-04 R-forge revision 51
+
+ * data/allEffects/csv: Bug in covariate behavior effects
+ * configure.win, src/Makefile.win, src/Makevars, src/win32/Makefile:
+ changes for Win64
+ * r/effects.r: minor fixes to getEffects function (default effects
+ for multiple dependent networks.)
+
2010-01-28 R-forge revision 48
* R/simstatsc.r: fixed bug in sort order of effects
Modified: pkg/RSiena/configure.win
===================================================================
--- pkg/RSiena/configure.win 2010-02-01 21:05:42 UTC (rev 50)
+++ pkg/RSiena/configure.win 2010-02-04 17:21:07 UTC (rev 51)
@@ -1,5 +1,6 @@
#!/bin/sh
+if test "$R_ARCH" != "/x64"; then
echo " getting gui installer"
allok=yes
echo 'download.file("http://www.stats.ox.ac.uk/~ruth/sienaversion.txt",
@@ -10,5 +11,6 @@
else
echo '{version <- scan("inst/sienaversion.txt", what="character"); file1 <- paste("sienaguisetup", version, ".exe", sep="", collapse=""); file2 <- paste("http://www.stats.ox.ac.uk/~ruth/", file1, sep="", collapse=""); file3 <- paste("inst/",file1, sep="", collapse="");download.file(file2,file3,mode="wb")}' | ${R_HOME}/bin/R --vanilla --slave
fi
+fi
exit 0
Modified: pkg/RSiena/data/allEffects.csv
===================================================================
--- pkg/RSiena/data/allEffects.csv 2010-02-01 21:05:42 UTC (rev 50)
+++ pkg/RSiena/data/allEffects.csv 2010-02-04 17:21:07 UTC (rev 51)
@@ -85,7 +85,7 @@
covarBehaviorInteractions,av.sim. x ,av.sim. x ,avSimX,TRUE,,,eval,FALSE,FALSE,FALSE,FALSE,FALSE,0,0,objective,NA,NA,0,0,0,0,
covarBehaviorInteractions,tot. sim. x ,tot. sim. x ,totSimX,TRUE,,,eval,FALSE,FALSE,FALSE,FALSE,FALSE,0,0,objective,NA,NA,0,0,0,0,
covarBehaviorInteractions,av. alters x ,av. alters x ,avAltX,TRUE,,,eval,FALSE,FALSE,FALSE,FALSE,FALSE,0,0,objective,NA,NA,0,0,0,0,
-covarBehaviorRate,effect yyyyyy on rate xxxxxx,Amount of change on xxxxxx x yyyyyy,RateX,NA,yyyyyy,,rate,FALSE,FALSE,FALSE,FALSE,FALSE,0,0,rate,NA,NA,0,0,0,0,
+covarBehaviorRate,effect yyyyyy on rate xxxxxx,Amount of change on xxxxxx x yyyyyy,RateX,NA,yyyyyy,,rate,FALSE,FALSE,FALSE,FALSE,FALSE,0,0,rate,NA,covariate,0,0,0,0,
bipartiteObjective,outdegree (density),Number of ties,density,TRUE,,,eval,FALSE,FALSE,FALSE,FALSE,FALSE,0,0,objective,NA,NA,0,0,0,0,dyadic
bipartiteObjective,4-cycles,(Number 4-cycles)^1/#),4-cycles,TRUE,,,eval,FALSE,FALSE,FALSE,FALSE,FALSE,0,1,objective,NA,NA,0,0,0,0,
bipartiteObjective,indegree - popularity,Sum of squared indegrees,inPop,TRUE,,,eval,FALSE,FALSE,FALSE,FALSE,FALSE,0,0,objective,NA,NA,0,0,0,0,
@@ -166,7 +166,6 @@
bipartiteSymmetricObjective,xxxxxx to agreement,"mixed triplets XWW, W = xxxxxx",to,TRUE,xxxxxx,,eval,FALSE,FALSE,FALSE,FALSE,FALSE,0,0,objective,NA,NA,0,0,0,0
nonSymmetricBipartiteObjective,outdegree^(1/#) xxxxxx activity,sum outd. x degree^(1/#) xxxxxx,outActIntn,TRUE,xxxxxx,,eval,FALSE,FALSE,FALSE,FALSE,FALSE,0,2,objective,NA,NA,0,0,0,0
nonSymmetricBipartiteObjective,from xxxxxx agreement ,"mixed triplets XWW, W = xxxxxx",from,TRUE,xxxxxx,,eval,FALSE,FALSE,FALSE,FALSE,FALSE,0,0,objective,NA,NA,0,0,0,0
-nonSymmetricBipartiteObjective,from xxxxxx mutual agr. ,"mixed triplets XWW, W=m.xxxxxx",fromMutual,TRUE,xxxxxx,,eval,FALSE,FALSE,FALSE,FALSE,FALSE,0,0,objective,NA,NA,0,0,0,0
bipartiteBipartiteObjective,outdegree^(1/#) xxxxxx activity,sum outd. x degree^(1/#) xxxxxx,outActIntn,TRUE,xxxxxx,,eval,FALSE,FALSE,FALSE,FALSE,FALSE,0,2,objective,NA,NA,0,0,0,0
bipartiteBipartiteObjective,xxxxxx to agreement,"mixed triplets XWW, W = xxxxxx",to,TRUE,xxxxxx,,eval,FALSE,FALSE,FALSE,FALSE,FALSE,0,0,objective,NA,NA,0,0,0,0
covarNetNetObjective,from xxxxxx agr. x same yyyyyy,"m.tr. XWW, W = xxxxxx, same yyyyyy",covNetNet,TRUE,xxxxxx,yyyyyy,eval,FALSE,FALSE,FALSE,FALSE,FALSE,0,0,objective,NA,NA,0,0,0,0
Modified: pkg/RSiena/inst/doc/s_man400.pdf
===================================================================
--- pkg/RSiena/inst/doc/s_man400.pdf 2010-02-01 21:05:42 UTC (rev 50)
+++ pkg/RSiena/inst/doc/s_man400.pdf 2010-02-04 17:21:07 UTC (rev 51)
@@ -1,509 +1,506 @@
%PDF-1.4
%ÐÔÅØ
-5 0 obj
+4 0 obj
<< /S /GoTo /D (section.1) >>
endobj
-8 0 obj
+7 0 obj
(General information)
endobj
-9 0 obj
+8 0 obj
<< /S /GoTo /D (part.1) >>
endobj
-12 0 obj
+11 0 obj
(I Minimal Intro)
endobj
-13 0 obj
+12 0 obj
<< /S /GoTo /D (section.2) >>
endobj
-16 0 obj
+15 0 obj
(Getting started with SIENA )
endobj
-17 0 obj
+16 0 obj
<< /S /GoTo /D (subsection.2.1) >>
endobj
-20 0 obj
+19 0 obj
(Installation and running the graphical user interface under Windows)
endobj
-21 0 obj
+20 0 obj
<< /S /GoTo /D (subsection.2.2) >>
endobj
-24 0 obj
+23 0 obj
(Using the graphical user interface from Mac or Linux)
endobj
-25 0 obj
+24 0 obj
<< /S /GoTo /D (subsection.2.3) >>
endobj
-28 0 obj
+27 0 obj
(Running the graphical user interface from within R )
endobj
-29 0 obj
+28 0 obj
<< /S /GoTo /D (subsection.2.4) >>
endobj
-32 0 obj
+31 0 obj
(Entering Data.)
endobj
-33 0 obj
+32 0 obj
<< /S /GoTo /D (subsection.2.5) >>
endobj
-36 0 obj
+35 0 obj
(Running the Estimation Program)
endobj
-37 0 obj
+36 0 obj
<< /S /GoTo /D (subsection.2.6) >>
endobj
-40 0 obj
+39 0 obj
(Details of The Data Entry Screen)
endobj
-41 0 obj
+40 0 obj
<< /S /GoTo /D (subsection.2.7) >>
endobj
-44 0 obj
+43 0 obj
(Data formats)
endobj
-45 0 obj
+44 0 obj
<< /S /GoTo /D (subsection.2.8) >>
endobj
-48 0 obj
+47 0 obj
(Continuing the estimation)
endobj
-49 0 obj
+48 0 obj
<< /S /GoTo /D (subsection.2.9) >>
endobj
-52 0 obj
+51 0 obj
(Using SIENA within R)
endobj
-53 0 obj
+52 0 obj
<< /S /GoTo /D (subsubsection.2.9.1) >>
endobj
-56 0 obj
+55 0 obj
(For those who are slightly familiar with R)
endobj
-57 0 obj
+56 0 obj
<< /S /GoTo /D (subsubsection.2.9.2) >>
endobj
-60 0 obj
+59 0 obj
(For those fully conversant with R)
endobj
-61 0 obj
+60 0 obj
<< /S /GoTo /D (subsubsection.2.9.3) >>
endobj
-64 0 obj
+63 0 obj
(An example R script for getting started)
endobj
-65 0 obj
+64 0 obj
<< /S /GoTo /D (subsection.2.10) >>
endobj
-68 0 obj
+67 0 obj
(Outline of estimation procedure)
endobj
-69 0 obj
+68 0 obj
<< /S /GoTo /D (subsection.2.11) >>
endobj
-72 0 obj
+71 0 obj
(Using multiple processes)
endobj
-73 0 obj
+72 0 obj
<< /S /GoTo /D (subsection.2.12) >>
endobj
-76 0 obj
+75 0 obj
(Steps for looking at results: Executing SIENA.)
endobj
-77 0 obj
+76 0 obj
<< /S /GoTo /D (subsection.2.13) >>
endobj
-80 0 obj
+79 0 obj
(Giving references)
endobj
-81 0 obj
+80 0 obj
<< /S /GoTo /D (subsection.2.14) >>
endobj
-84 0 obj
+83 0 obj
(Getting help with problems)
endobj
-85 0 obj
+84 0 obj
<< /S /GoTo /D (part.2) >>
endobj
-88 0 obj
+87 0 obj
(II User's manual)
endobj
-89 0 obj
+88 0 obj
<< /S /GoTo /D (section.3) >>
endobj
-92 0 obj
+91 0 obj
(Program parts)
endobj
-93 0 obj
+92 0 obj
<< /S /GoTo /D (section.4) >>
endobj
-96 0 obj
+95 0 obj
(Input data)
endobj
-97 0 obj
+96 0 obj
<< /S /GoTo /D (subsection.4.1) >>
endobj
-100 0 obj
+99 0 obj
(Digraph data files)
endobj
-101 0 obj
+100 0 obj
<< /S /GoTo /D (subsubsection.4.1.1) >>
endobj
-104 0 obj
+103 0 obj
(Structurally determined values)
endobj
-105 0 obj
+104 0 obj
<< /S /GoTo /D (subsection.4.2) >>
endobj
-108 0 obj
+107 0 obj
(Dyadic covariates)
endobj
-109 0 obj
+108 0 obj
<< /S /GoTo /D (subsection.4.3) >>
endobj
-112 0 obj
+111 0 obj
(Individual covariates)
endobj
-113 0 obj
+112 0 obj
<< /S /GoTo /D (subsection.4.4) >>
endobj
-116 0 obj
+115 0 obj
(Interactions and dyadic transformations of covariates)
endobj
-117 0 obj
+116 0 obj
<< /S /GoTo /D (subsection.4.5) >>
endobj
-120 0 obj
+119 0 obj
(Dependent action variables)
endobj
-121 0 obj
+120 0 obj
<< /S /GoTo /D (subsection.4.6) >>
endobj
-124 0 obj
+123 0 obj
(Missing data)
endobj
-125 0 obj
+124 0 obj
<< /S /GoTo /D (subsection.4.7) >>
endobj
-128 0 obj
+127 0 obj
(Composition change)
endobj
-129 0 obj
+128 0 obj
<< /S /GoTo /D (subsection.4.8) >>
endobj
-132 0 obj
+131 0 obj
(Centering)
endobj
-133 0 obj
+132 0 obj
<< /S /GoTo /D (section.5) >>
endobj
-136 0 obj
+135 0 obj
(Model specification)
endobj
-137 0 obj
+136 0 obj
<< /S /GoTo /D (subsection.5.1) >>
endobj
-140 0 obj
+139 0 obj
(Important structural effects for network dynamics: one-mode networks)
endobj
-141 0 obj
+140 0 obj
<< /S /GoTo /D (subsection.5.2) >>
endobj
-144 0 obj
+143 0 obj
(Important structural effects for network dynamics: two-mode networks)
endobj
-145 0 obj
+144 0 obj
<< /S /GoTo /D (subsection.5.3) >>
endobj
-148 0 obj
+147 0 obj
(Effects for network dynamics associated with covariates)
endobj
-149 0 obj
+148 0 obj
<< /S /GoTo /D (subsection.5.4) >>
endobj
-152 0 obj
+151 0 obj
(Effects on behavior evolution)
endobj
-153 0 obj
+152 0 obj
<< /S /GoTo /D (subsection.5.5) >>
endobj
-156 0 obj
+155 0 obj
(Additional interaction effects)
endobj
-157 0 obj
+156 0 obj
<< /S /GoTo /D (subsubsection.5.5.1) >>
endobj
-160 0 obj
+159 0 obj
(Interaction effects for network dynamics)
endobj
-161 0 obj
+160 0 obj
<< /S /GoTo /D (section.6) >>
endobj
-164 0 obj
+163 0 obj
(Estimation)
endobj
-165 0 obj
+164 0 obj
<< /S /GoTo /D (subsection.6.1) >>
endobj
-168 0 obj
+167 0 obj
(Algorithm)
endobj
-169 0 obj
+168 0 obj
<< /S /GoTo /D (subsection.6.2) >>
endobj
-172 0 obj
+171 0 obj
(Output)
endobj
-173 0 obj
+172 0 obj
<< /S /GoTo /D (subsubsection.6.2.1) >>
endobj
-176 0 obj
+175 0 obj
(Fixing parameters)
endobj
-177 0 obj
+176 0 obj
<< /S /GoTo /D (subsubsection.6.2.2) >>
endobj
-180 0 obj
+179 0 obj
(Automatic fixing of parameters)
endobj
-181 0 obj
+180 0 obj
<< /S /GoTo /D (subsubsection.6.2.3) >>
endobj
-184 0 obj
+183 0 obj
(Conditional and unconditional estimation)
endobj
-185 0 obj
+184 0 obj
<< /S /GoTo /D (subsubsection.6.2.4) >>
endobj
-188 0 obj
+187 0 obj
(Required changes from conditional to unconditional estimation)
endobj
-189 0 obj
+188 0 obj
<< /S /GoTo /D (section.7) >>
endobj
-192 0 obj
+191 0 obj
(Standard errors)
endobj
-193 0 obj
+192 0 obj
<< /S /GoTo /D (section.8) >>
endobj
-196 0 obj
+195 0 obj
(Tests)
endobj
-197 0 obj
+196 0 obj
<< /S /GoTo /D (subsection.8.1) >>
endobj
-200 0 obj
+199 0 obj
(Score-type tests)
endobj
-201 0 obj
+200 0 obj
<< /S /GoTo /D (subsection.8.2) >>
endobj
-204 0 obj
+203 0 obj
(Example: one-sided tests, two-sided tests, and one-step estimates)
endobj
-205 0 obj
+204 0 obj
<< /S /GoTo /D (subsubsection.8.2.1) >>
endobj
-208 0 obj
+207 0 obj
(Multi-parameter tests)
endobj
-209 0 obj
+208 0 obj
<< /S /GoTo /D (subsection.8.3) >>
endobj
-212 0 obj
+211 0 obj
(Alternative application: convergence problems)
endobj
-213 0 obj
+212 0 obj
<< /S /GoTo /D (subsection.8.4) >>
endobj
-216 0 obj
+215 0 obj
(Testing differences between independent groups)
endobj
-217 0 obj
+216 0 obj
<< /S /GoTo /D (section.9) >>
endobj
-220 0 obj
+219 0 obj
(Simulation)
endobj
-221 0 obj
+220 0 obj
<< /S /GoTo /D (subsection.9.1) >>
endobj
-224 0 obj
+223 0 obj
(Conditional and unconditional simulation)
endobj
-225 0 obj
+224 0 obj
<< /S /GoTo /D (section.10) >>
endobj
-228 0 obj
+227 0 obj
(Options for model type, estimation and simulation)
endobj
-229 0 obj
+228 0 obj
<< /S /GoTo /D (section.11) >>
endobj
-232 0 obj
+231 0 obj
(Getting started)
endobj
-233 0 obj
+232 0 obj
<< /S /GoTo /D (subsection.11.1) >>
endobj
-236 0 obj
+235 0 obj
(Model choice)
endobj
-237 0 obj
+236 0 obj
<< /S /GoTo /D (subsubsection.11.1.1) >>
endobj
-240 0 obj
+239 0 obj
(Exploring which effects to include)
endobj
-241 0 obj
+240 0 obj
<< /S /GoTo /D (subsection.11.2) >>
endobj
-244 0 obj
+243 0 obj
(Convergence problems)
endobj
-245 0 obj
+244 0 obj
<< /S /GoTo /D (section.12) >>
endobj
-248 0 obj
+247 0 obj
(Multilevel network analysis)
endobj
-249 0 obj
+248 0 obj
<< /S /GoTo /D (subsection.12.1) >>
endobj
-252 0 obj
+251 0 obj
(Multi-group Siena analysis)
endobj
-253 0 obj
+252 0 obj
<< /S /GoTo /D (subsection.12.2) >>
endobj
-256 0 obj
+255 0 obj
(Meta-analysis of Siena results)
endobj
-257 0 obj
+256 0 obj
<< /S /GoTo /D (section.13) >>
endobj
-260 0 obj
+259 0 obj
(Formulas for effects)
endobj
-261 0 obj
+260 0 obj
<< /S /GoTo /D (subsection.13.1) >>
endobj
-264 0 obj
+263 0 obj
(Network evolution)
endobj
-265 0 obj
+264 0 obj
<< /S /GoTo /D (subsubsection.13.1.1) >>
endobj
-268 0 obj
+267 0 obj
(Network evaluation function)
endobj
-269 0 obj
+268 0 obj
<< /S /GoTo /D (subsubsection.13.1.2) >>
endobj
+271 0 obj
+(Multiple network effects)
+endobj
272 0 obj
+<< /S /GoTo /D (subsubsection.13.1.3) >>
+endobj
+275 0 obj
(Network endowment function)
endobj
-273 0 obj
-<< /S /GoTo /D (subsubsection.13.1.3) >>
+276 0 obj
+<< /S /GoTo /D (subsubsection.13.1.4) >>
endobj
-276 0 obj
+279 0 obj
(Network rate function)
endobj
-277 0 obj
+280 0 obj
<< /S /GoTo /D (subsection.13.2) >>
endobj
-280 0 obj
+283 0 obj
(Behavioral evolution)
endobj
-281 0 obj
+284 0 obj
<< /S /GoTo /D (subsubsection.13.2.1) >>
endobj
-284 0 obj
+287 0 obj
(Behavioral evaluation function)
endobj
-285 0 obj
+288 0 obj
<< /S /GoTo /D (subsubsection.13.2.2) >>
endobj
-288 0 obj
+291 0 obj
(Behavioral endowment function)
endobj
-289 0 obj
+292 0 obj
<< /S /GoTo /D (subsubsection.13.2.3) >>
endobj
-292 0 obj
+295 0 obj
(Behavioral rate function)
endobj
-293 0 obj
+296 0 obj
<< /S /GoTo /D (section.14) >>
endobj
-296 0 obj
+299 0 obj
(Parameter interpretation)
endobj
-297 0 obj
+300 0 obj
<< /S /GoTo /D (subsection.14.1) >>
endobj
-300 0 obj
+303 0 obj
(Longitudinal models)
endobj
-301 0 obj
+304 0 obj
<< /S /GoTo /D (subsubsection.14.1.1) >>
endobj
-304 0 obj
+307 0 obj
(Ego -- alter selection tables)
endobj
-305 0 obj
+308 0 obj
<< /S /GoTo /D (subsubsection.14.1.2) >>
endobj
-308 0 obj
+311 0 obj
(Ego -- alter influence tables)
endobj
-309 0 obj
+312 0 obj
<< /S /GoTo /D (section.15) >>
endobj
-312 0 obj
+315 0 obj
(Changes compared to earlier versions)
endobj
-313 0 obj
+316 0 obj
<< /S /GoTo /D (section.16) >>
endobj
-316 0 obj
+319 0 obj
(References)
endobj
-321 0 obj <<
-/Length 1077
+324 0 obj <<
+/Length 1073
/Filter /FlateDecode
>>
stream
-xÚ…VKsÛ6¾ëWðΘ0^Éöä$v›ÌØmmõÔô S°ÄZ$U’²«ß],©ˆ±<ÍÀb÷Ã>¾(¢u$¢_âñÃrqy#m¤ÏòLF˧HjÅua"k
-W¹–«è/vëšXY¶wÛ8ÑB±§¶‹ÿ^~Ûlf+-·² è`õðùúîjÔ›‘)níQí¡}×WmC膋Ñ*
-^XeÑ(±šçÒD‰’¼€`û{§’µ/ZïÒœ½ XâaŽÁ^Þè,’†kcU 4<×ðržŠðî÷Ã@À¡[ŽcÆî«ÝÖf@Ó%9OU%²àÙ„°ŒsÅÚšŒ¯øNpMõÏ
-ü:DžAXiJžI‰Ô2J´á)ìä?›
-R•…T
-89tûDãoÿAYV?ʼnÑ)ûäw®jß âpª˜±‡Á
-˜Ÿ>N$ìIV•ýÏ´u·ÿ*¤õÛY|l·[¿ö3§#©yÈ›ùñÅ…sö®}RùÅ8Rœùz¹0‘Œd–r+€I…à2PÖ‹:lÒLÚ£àò¦–ѧvñü¾ÇžT“ 99œ×E”³¬Át«\r-u¤ ÛÆŒu¼zì‡Î•Ã;3â ‘6ƒ¦œH8Ofoè¯óÙqÜffbÿW‘Šc;ÍP%`æé±™ªz¿…ºQ“ìsóâû¡ZŸˆžÚX嬣Åu½«ºª¤Ž-ØÊì5ZœuÏ´qmsè«þœ£RA>N•dÊat0HÁʶÞíEƒïH°ëÚuçjR6.äjaŠÙ
-L¸t]Wy´Ð°{dªU`äIÒ#U!LŠs=ÅŒ&OdQ·1’üvÄœαüK~»kp·¡m€“ `e5Ôœf¬{a]YB“UÍ:Ä$Æ`
-
-f ŒT¤t$NV‡ÆÕUI SÛ%-„Û æàW$ÿæ:®©MQ~¼2Â
-y¢„ÐW©Á¾)U$@7«¹Í¨õ0øõ·86£Uϸþ@JèØ+Î|œ|®ùnjÎndx6\mƶÜ!Ò‘vL9†æÊøn¤ì¢çšKsîÙxÓ7Ðß^
-pêx|8,3xéHÍ^7cÌ$žÜs´,A6‡®z܇" pç‚ÅsœfÌч/„‹]¾-²²9‰“Gƒàо>h‘q)õÁý™S^drRà·œ
-Ù,(›¸Æ¸p|t=†SÌÄÌ9ïºm…Å;ð^9àA„KóÇ値ž”£8>âˆ/:úÈ7x
-—…'ÓmCße’ªŽ»ªéç’P'Àů]5¾¡Eèr•)ºf‚è”s¸~ÄÕæ·¯=Ôÿu_õ œLÙ-ò%gçG£·ÃŹ.
-}¨f˜›Yá’œ¶"ÿî»äô3Gæ)‡G>wà#I•3x:ÿåðuI
+xÚ…VKsÛ6¾ëWðΘ0Þ$Ú““Øm:c·µÕSÓ$Á‘TIÊ®þ}wR%cy2š€Åî‡}|%Û„%?-Ø;ã‡åâúŽ›D(š9O–Ï —‚J«c…I–›äOrïêTrtû4“Lç¦MÿZþ¶ùÌ–j¸è`õôùöáfЛ‘jÌYí¡}Û•MÑeƒU‘Xj0h”I®’Lpja'ØþÖ¦š“æ¥Dëà.È‚¥ ®æìõÌ®¨TF@Ei ¯ …ïñØï º§8æä±<ìýi4ŽIVP-ò$ã–æ#Â2-iªh|C?Ð÷T—oÀ¯‹@Ñ3KëègHÉ“L*ªa/ ÿQ—ª<¤ªÇÉ)B7Ïqüõ_(Ëæ‡4SR“OþàÚ¾ò5*öSÅœ<õ®ÇütiÆa“rÝý·Ž_7~¿‰›ýÞoýÌé„Fµ)Bⴕѹ;Û¯Ú£kOJ]EÁ8»õírÁažð\SÀK–Qad²®ÿ,dØŒÿA0j‚뻊'ŸšÅïðû{TÍFälX/mR ·ŒÂ„‹‚SÉe" ßÒܺYu}ëÖý;%Slq“ËŒÃy<Ó ²˜GM®Fþašj†Ê³Ðçv*«ã*ÛÄ’Ïõ‹ïúr;=7©(H·Õ¡lËuìYK<Æ’WÔhpÖ~7Ð8§®ì.9ÊUSGy4å0:8#ë¦:G½o£àÐ6ÛÖUQ©ß¹C¨.¨²ù
+\·uíÚ¶ôh eÈU#ÀÈGI‡d…0c À˜«1f4yŽU“#ÉÆï,ÌéË¿„à÷G°wë¸à$°d]Ž'ÕÓŒµ_X·^C›•õ6ÄÄæÁô€¡™ŽGâdsª]U®ãÈÔ´YáÖˆÙûM”ÿï:®c£¢ü|i„òD0Æ¡¯´Â¾b:V$@×›¹Í õÔûí·8vƒU§®tŠJèØ+Î|œ\×|»
+µç7r<.7¥Yî"!ô@3¤Csex94y‡è…¤\]z8Þô“wƒ:žŸ/.Éënˆ9ŠG÷\\®A6û¶\CPxpÁâkªsââ‡o
+‡«¿-²0E'3ŽÁ©ë}u!P›SÎåÁã…5µ9h„[Ž…lÚ˜M\c\8®\‡aà31sλv_bñ.¼WxáÒü~9 ©“rØó3ŽØò
+©#Ï|ƒ×€QnÍ<™nú.ç±*à¸+ën. uÜAüÚ–}ïë¸].r¯™ šr×+\âüÞᵇú?Ë4ƒ“šÜ#_
+²s~0ú~;\]º BJ%ÉG æ®EV¸:J¦H¿ù2™~èðBSx4áƒGЖÏôáåüª‚uÊ
endstream
endobj
-320 0 obj <<
+323 0 obj <<
/Type /Page
-/Contents 321 0 R
-/Resources 319 0 R
+/Contents 324 0 R
+/Resources 322 0 R
/MediaBox [0 0 595.276 841.89]
-/Parent 332 0 R
+/Parent 335 0 R
>> endobj
-318 0 obj <<
+321 0 obj <<
/Type /XObject
/Subtype /Form
/BBox [0 0 84 59.04]
/FormType 1
/Matrix [1 0 0 1 0 0]
-/Resources 333 0 R
+/Resources 336 0 R
/Length 34
/Filter /FlateDecode
>>
@@ -511,7 +508,7 @@
xÚ+ä²0Q0 BSK=+9—Kß3×PÁ%Ÿ+ hÆ
endstream
endobj
-317 0 obj <<
+320 0 obj <<
/Type /XObject
/Subtype /Image
/Width 350
@@ -623,22 +620,22 @@
klŠÇ,T‚ÄñéïœöšwŒ¬u?ÜèéÒÃ$V¾gžedc#ýsÏqELè¯N)FËìžkñöñýÄrF|¤ùWýcm1ç’zyÅvZ݇‡´X®`Ži“P˜IG䟽*¤–là}VU7F•Ÿî`‡i¾ñ^‡u}®A«X%õÖö”iCŒîÁ,3ù*í£I.—PŠÜ^E’[`ÊsŽ³»oÖŠ*’»ÔâÄI·qñ¨Ž@¢ghÔgcÅçýìdþ5*̆åc0)9#~pqôQV`N—$U’B6Ÿ½‚qÛŸZS~(wF¢ŠdûhôoÒ—í‹ýÖý(¢˜‡}´z7ä(ûhôoÈQE 'ÛÇ£þuêI[¶¹ö¢ŠC3ï5–HX“"û!Ï®<}«4ÛyÁÄ’Ü8'î™qÀíùQEsÔo”î¥N=‡Íã‹-ý"m*iå’%ie{¢Ä‚áGÞ8ëÛëX?¼Wq{cc Xã˜Í”ˆãa^I8á‡OOJ(¬èÉË–çM*qU£dqÖšÄÒͪê3©šcgå³™][-²0ùæ<ŒƒüñSiz–§¨É#›¶.»9;Xgv aÎ3’}I'©4Q]5"¹Né¥ïoí®´’é}2Jó¡d1ƒ˜ðë–Và$§å⡳Ôtý:Ú(šÖå¯×y–â;‚£Ë={òxêh¢¢ÊÖ#x»”5(gÕÑ䀮ùÃKµ˜åsÐç?t‡ÃãSH¼©DQÉ™×÷i€F9ùØŽ»ºz‘E,•‰«'1óx¾¶µ¤Ë$‰!o>uPOUè½°?Ö3OÞÝ´H…Š†UP3…àsù÷¢Šå¨5c ll®§›g Œ’Ö Ilc!Kc Øé¥áfW(Ós¾@z{ô¢Šê„VÇö¹ÿÙ
endstream
endobj
-333 0 obj <<
-/XObject << /Im1 317 0 R >>
+336 0 obj <<
+/XObject << /Im1 320 0 R >>
/ProcSet [ /PDF /ImageC ]
>> endobj
-322 0 obj <<
-/D [320 0 R /XYZ 88.008 753.953 null]
+325 0 obj <<
+/D [323 0 R /XYZ 88.008 753.953 null]
>> endobj
-323 0 obj <<
-/D [320 0 R /XYZ 89.008 716.092 null]
+326 0 obj <<
+/D [323 0 R /XYZ 89.008 716.092 null]
>> endobj
-319 0 obj <<
-/Font << /F16 324 0 R /F17 325 0 R /F18 326 0 R /F37 327 0 R /F39 328 0 R /F40 329 0 R /F38 330 0 R /F8 331 0 R >>
-/XObject << /Fm1 318 0 R >>
+322 0 obj <<
+/Font << /F16 327 0 R /F17 328 0 R /F18 329 0 R /F37 330 0 R /F39 331 0 R /F40 332 0 R /F38 333 0 R /F8 334 0 R >>
+/XObject << /Fm1 321 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-379 0 obj <<
+382 0 obj <<
/Length 1779
/Filter /FlateDecode
>>
@@ -654,616 +651,624 @@
W4½°;V¶ÑF[hïnƒh¼7^F´^fX†› ÅK÷Ñ|ÎäžÐZ1Û£¥!^q2ÛV×μó›WÿD >
endstream
endobj
-378 0 obj <<
+381 0 obj <<
/Type /Page
-/Contents 379 0 R
-/Resources 377 0 R
+/Contents 382 0 R
+/Resources 380 0 R
/MediaBox [0 0 595.276 841.89]
-/Parent 332 0 R
-/Annots [ 334 0 R 335 0 R 336 0 R 337 0 R 338 0 R 339 0 R 340 0 R 341 0 R 342 0 R 343 0 R 344 0 R 345 0 R 346 0 R 347 0 R 348 0 R 349 0 R 350 0 R 351 0 R 352 0 R 353 0 R 354 0 R 355 0 R 356 0 R 357 0 R 358 0 R 359 0 R 360 0 R 361 0 R 362 0 R 363 0 R 364 0 R 365 0 R 366 0 R 367 0 R 383 0 R 368 0 R 384 0 R 369 0 R 370 0 R 371 0 R 372 0 R ]
+/Parent 335 0 R
+/Annots [ 337 0 R 338 0 R 339 0 R 340 0 R 341 0 R 342 0 R 343 0 R 344 0 R 345 0 R 346 0 R 347 0 R 348 0 R 349 0 R 350 0 R 351 0 R 352 0 R 353 0 R 354 0 R 355 0 R 356 0 R 357 0 R 358 0 R 359 0 R 360 0 R 361 0 R 362 0 R 363 0 R 364 0 R 365 0 R 366 0 R 367 0 R 368 0 R 369 0 R 370 0 R 386 0 R 371 0 R 387 0 R 372 0 R 373 0 R 374 0 R 375 0 R ]
>> endobj
-334 0 obj <<
+337 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [88.012 684.308 197.853 692.527]
/A << /S /GoTo /D (section.1) >>
>> endobj
-335 0 obj <<
+338 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [88.012 652.614 191.686 662.909]
/A << /S /GoTo /D (part.1) >>
>> endobj
-336 0 obj <<
+339 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [88.012 630.697 232.383 640.659]
/A << /S /GoTo /D (section.2) >>
>> endobj
-337 0 obj <<
+340 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 619.738 402.012 629.7]
/A << /S /GoTo /D (subsection.2.1) >>
>> endobj
-338 0 obj <<
+341 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 608.779 340.137 618.742]
/A << /S /GoTo /D (subsection.2.2) >>
>> endobj
-339 0 obj <<
+342 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 597.82 334.775 607.783]
/A << /S /GoTo /D (subsection.2.3) >>
>> endobj
-340 0 obj <<
+343 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 586.861 185.202 596.724]
/A << /S /GoTo /D (subsection.2.4) >>
>> endobj
-341 0 obj <<
+344 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 575.902 260.66 585.865]
/A << /S /GoTo /D (subsection.2.5) >>
>> endobj
-342 0 obj <<
+345 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 564.943 260.926 574.906]
/A << /S /GoTo /D (subsection.2.6) >>
>> endobj
-343 0 obj <<
+346 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 555.728 178.466 563.947]
/A << /S /GoTo /D (subsection.2.7) >>
>> endobj
-344 0 obj <<
+347 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 543.025 230.546 552.988]
/A << /S /GoTo /D (subsection.2.8) >>
>> endobj
-345 0 obj <<
+348 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 532.067 214.542 542.029]
/A << /S /GoTo /D (subsection.2.9) >>
>> endobj
-346 0 obj <<
+349 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [123.03 521.108 323.33 531.07]
/A << /S /GoTo /D (subsubsection.2.9.1) >>
>> endobj
-347 0 obj <<
+350 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [123.03 510.149 288.752 520.111]
/A << /S /GoTo /D (subsubsection.2.9.2) >>
>> endobj
-348 0 obj <<
+351 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [123.03 499.19 313.993 509.152]
/A << /S /GoTo /D (subsubsection.2.9.3) >>
>> endobj
-349 0 obj <<
+352 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 488.231 253.633 498.194]
/A << /S /GoTo /D (subsection.2.10) >>
>> endobj
-350 0 obj <<
+353 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 477.272 223.811 487.235]
/A << /S /GoTo /D (subsection.2.11) >>
>> endobj
-351 0 obj <<
+354 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 466.313 312.015 476.276]
/A << /S /GoTo /D (subsection.2.12) >>
>> endobj
-352 0 obj <<
+355 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 455.354 194.308 465.317]
/A << /S /GoTo /D (subsection.2.13) >>
>> endobj
-353 0 obj <<
+356 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 444.395 236.265 454.358]
/A << /S /GoTo /D (subsection.2.14) >>
>> endobj
-354 0 obj <<
+357 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [88.012 414.445 197.231 424.74]
/A << /S /GoTo /D (part.2) >>
>> endobj
-355 0 obj <<
+358 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [88.012 392.528 171.712 402.415]
/A << /S /GoTo /D (section.3) >>
>> endobj
-356 0 obj <<
+359 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [88.012 372.353 153.511 382.316]
/A << /S /GoTo /D (section.4) >>
>> endobj
-357 0 obj <<
+360 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 361.394 197.157 371.357]
/A << /S /GoTo /D (subsection.4.1) >>
>> endobj
-358 0 obj <<
+361 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [123.03 350.435 278.535 360.398]
/A << /S /GoTo /D (subsubsection.4.1.1) >>
>> endobj
-359 0 obj <<
+362 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 339.477 195.621 349.439]
/A << /S /GoTo /D (subsection.4.2) >>
>> endobj
-360 0 obj <<
+363 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 330.261 208.547 338.48]
/A << /S /GoTo /D (subsection.4.3) >>
>> endobj
-361 0 obj <<
+364 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 317.559 339.318 327.521]
/A << /S /GoTo /D (subsection.4.4) >>
>> endobj
-362 0 obj <<
+365 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 306.6 234.284 316.562]
/A << /S /GoTo /D (subsection.4.5) >>
>> endobj
-363 0 obj <<
+366 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 295.641 176.576 305.604]
/A << /S /GoTo /D (subsection.4.6) >>
>> endobj
-364 0 obj <<
+367 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 284.682 206.48 294.645]
/A << /S /GoTo /D (subsection.4.7) >>
>> endobj
-365 0 obj <<
+368 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 273.723 164.216 283.586]
/A << /S /GoTo /D (subsection.4.8) >>
>> endobj
-366 0 obj <<
+369 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [88.012 253.549 193.677 263.511]
/A << /S /GoTo /D (section.5) >>
>> endobj
-367 0 obj <<
+370 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 242.59 515.201 252.553]
/A << /S /GoTo /D (subsection.5.1) >>
>> endobj
-383 0 obj <<
+386 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [88.012 233.374 202.412 241.594]
/A << /S /GoTo /D (subsection.5.1) >>
>> endobj
-368 0 obj <<
+371 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 220.672 515.201 230.635]
/A << /S /GoTo /D (subsection.5.2) >>
>> endobj
-384 0 obj <<
+387 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [88.012 211.457 202.92 219.676]
/A << /S /GoTo /D (subsection.5.2) >>
>> endobj
-369 0 obj <<
+372 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 198.754 349.467 208.717]
/A << /S /GoTo /D (subsection.5.3) >>
>> endobj
-370 0 obj <<
+373 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 189.539 242.472 197.758]
/A << /S /GoTo /D (subsection.5.4) >>
>> endobj
-371 0 obj <<
+374 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [101.835 178.58 242.088 186.799]
/A << /S /GoTo /D (subsection.5.5) >>
>> endobj
-372 0 obj <<
+375 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [123.03 165.878 316.47 175.84]
/A << /S /GoTo /D (subsubsection.5.5.1) >>
>> endobj
-380 0 obj <<
-/D [378 0 R /XYZ 124.798 753.953 null]
+383 0 obj <<
+/D [381 0 R /XYZ 124.798 753.953 null]
>> endobj
-382 0 obj <<
-/D [378 0 R /XYZ 89.008 696.263 null]
+385 0 obj <<
+/D [381 0 R /XYZ 89.008 696.263 null]
>> endobj
-377 0 obj <<
-/Font << /F41 381 0 R /F39 328 0 R /F40 329 0 R /F38 330 0 R /F8 331 0 R >>
+380 0 obj <<
+/Font << /F41 384 0 R /F39 331 0 R /F40 332 0 R /F38 333 0 R /F8 334 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-422 0 obj <<
-/Length 1492
+426 0 obj <<
+/Length 1520
/Filter /FlateDecode
>>
stream
[TRUNCATED]
To get the complete diff run:
svnlook diff /svnroot/rsiena -r 51
More information about the Rsiena-commits
mailing list